2020-01-06 20:24:54 +04:00
|
|
|
import { ExcalidrawTextElement } from "../element/types";
|
|
|
|
|
2020-01-06 19:34:22 +04:00
|
|
|
export type SceneState = {
|
|
|
|
scrollX: number;
|
|
|
|
scrollY: number;
|
|
|
|
// null indicates transparent bg
|
|
|
|
viewBackgroundColor: string | null;
|
|
|
|
};
|
2020-01-06 20:24:54 +04:00
|
|
|
|
|
|
|
export interface Scene {
|
|
|
|
elements: ExcalidrawTextElement[];
|
|
|
|
}
|