This repository has been archived on 2020-09-30. You can view files and clone it, but cannot push or open issues or pull requests.
odyfive/src/store/ui/state.ts

10 lines
222 B
TypeScript
Raw Normal View History

2020-09-29 09:31:55 +00:00
import { MapEditorLayer } from "~ui/MapEditor";
export type UILayer = MapEditorLayer;
export type LayerList = { id: string; data: UILayer; visible: boolean }[];
2020-09-29 08:52:39 +00:00
export default interface UIStore {
layers: LayerList;
}