excalidraw/src/scene/types.ts
2020-01-06 19:34:22 +04:00

7 lines
141 B
TypeScript

export type SceneState = {
scrollX: number;
scrollY: number;
// null indicates transparent bg
viewBackgroundColor: string | null;
};