excalidraw/src/scene/types.ts

7 lines
141 B
TypeScript
Raw Normal View History

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