typescript
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Drawing } from "./Drawing";
|
||||
import { Fog } from "./Fog";
|
||||
import { FogState } from "./Fog";
|
||||
import { Note } from "./Note";
|
||||
import { TokenState } from "./TokenState";
|
||||
|
||||
@@ -8,7 +8,7 @@ export type EditFlag = "drawing" | "tokens" | "notes" | "fog";
|
||||
export type MapState = {
|
||||
tokens: Record<string, TokenState>;
|
||||
drawShapes: Record<string, Drawing>;
|
||||
fogShapes: Record<string, Fog>;
|
||||
fogShapes: FogState;
|
||||
editFlags: Array<EditFlag>;
|
||||
notes: Record<string, Note>;
|
||||
mapId: string;
|
||||
|
||||
Reference in New Issue
Block a user