From 6ec259a0e71174651bae95d4628138bf6fd68742 Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Sun, 15 Mar 2026 16:19:35 -0400 Subject: refactor: packages/ --- packages/excalidraw/data/types.ts | 59 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 packages/excalidraw/data/types.ts (limited to 'packages/excalidraw/data/types.ts') diff --git a/packages/excalidraw/data/types.ts b/packages/excalidraw/data/types.ts new file mode 100644 index 0000000..f5f5535 --- /dev/null +++ b/packages/excalidraw/data/types.ts @@ -0,0 +1,59 @@ +import type { ExcalidrawElement } from "../element/types"; +import type { + AppState, + BinaryFiles, + LibraryItems, + LibraryItems_anyVersion, +} from "../types"; +import type { cleanAppStateForExport } from "../appState"; +import type { VERSIONS } from "../constants"; + +export interface ExportedDataState { + type: string; + version: number; + source: string; + elements: readonly ExcalidrawElement[]; + appState: ReturnType; + files: BinaryFiles | undefined; +} + +/** + * Map of legacy AppState keys, with values of: + * [, ] + * + * This is a helper type used in downstream abstractions. + * Don't consume on its own. + */ +export type LegacyAppState = { + /** @deprecated #6213 TODO remove 23-06-01 */ + isSidebarDocked: [boolean, "defaultSidebarDockedPreference"]; +}; + +export interface ImportedDataState { + type?: string; + version?: number; + source?: string; + elements?: readonly ExcalidrawElement[] | null; + appState?: Readonly< + Partial< + AppState & { + [T in keyof LegacyAppState]: LegacyAppState[T][0]; + } + > + > | null; + scrollToContent?: boolean; + libraryItems?: LibraryItems_anyVersion; + files?: BinaryFiles; +} + +export interface ExportedLibraryData { + type: string; + version: typeof VERSIONS.excalidrawLibrary; + source: string; + libraryItems: LibraryItems; +} + +export interface ImportedLibraryData extends Partial { + /** @deprecated v1 */ + library?: LibraryItems; +} -- cgit v1.2.3