excalidraw/src/data/types.ts
2020-03-12 20:02:10 +01:00

11 lines
250 B
TypeScript

import { ExcalidrawElement } from "../element/types";
import { AppState } from "../types";
export interface DataState {
type?: string;
version?: string;
source?: string;
elements: readonly ExcalidrawElement[];
appState: AppState | null;
}