mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
10 lines
250 B
TypeScript
10 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;
|
|
}
|