2020-03-07 10:20:38 -05:00
|
|
|
import { ExcalidrawElement } from "../element/types";
|
|
|
|
import { AppState } from "../types";
|
|
|
|
|
|
|
|
export interface DataState {
|
|
|
|
type?: string;
|
|
|
|
version?: string;
|
|
|
|
source?: string;
|
|
|
|
elements: readonly ExcalidrawElement[];
|
2020-07-27 17:18:49 +05:30
|
|
|
appState: MarkOptional<AppState, "offsetTop" | "offsetLeft"> | null;
|
2020-03-07 10:20:38 -05:00
|
|
|
}
|