4a044d3ace
* Change to move cursor on hover * Show resize handlers on hover
18 lines
335 B
TypeScript
18 lines
335 B
TypeScript
import { ExcalidrawTextElement } from "../element/types";
|
|
|
|
export type SceneState = {
|
|
scrollX: number;
|
|
scrollY: number;
|
|
// null indicates transparent bg
|
|
viewBackgroundColor: string | null;
|
|
};
|
|
|
|
export type SceneScroll = {
|
|
scrollX: number;
|
|
scrollY: number;
|
|
};
|
|
|
|
export interface Scene {
|
|
elements: ExcalidrawTextElement[];
|
|
}
|