This commit is contained in:
Aakansha Doshi 2023-08-01 20:40:52 +05:30
parent 77ef356076
commit 06dd6de0af
3 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,6 @@ import { deepCopyElement } from "./element/newElement";
import { mutateElement } from "./element/mutateElement";
import { getContainingFrame } from "./frame";
import { isPromiseLike, isTestEnv } from "./utils";
import { ExcalidrawProgrammaticElement } from "./data/transform";
type ElementsClipboard = {
type: typeof EXPORT_DATA_TYPES.excalidrawClipboard;
@ -21,7 +20,7 @@ type ElementsClipboard = {
export interface ClipboardData {
spreadsheet?: Spreadsheet;
elements?: readonly (ExcalidrawElement | ExcalidrawProgrammaticElement)[];
elements?: readonly ExcalidrawElement[];
files?: BinaryFiles;
text?: string;
errorMessage?: string;