import { Drawing } from "./Drawing"; import { Fog } from "./Fog"; import { Note } from "./Note"; import { TokenState } from "./TokenState"; export type EditFlag = "drawing" | "tokens" | "notes" | "fog"; export type MapState = { tokens: Record; drawShapes: Record; fogShapes: Record; editFlags: Array; notes: Record; mapId: string; };