@excalidraw/excalidraw 0.16.1-7251-baadf54 → 0.16.1-7251-fc9c8cd
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/excalidraw-assets-dev/{vendor-05ba14a033ad4c84ef2a.js → vendor-2622f46640b7323f3bcc.js} +2 -2
- package/dist/excalidraw.development.js +5 -5
- package/dist/excalidraw.production.min.js +1 -1
- package/package.json +1 -1
- package/types/types.d.ts +1 -3
- /package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-05ba14a033ad4c84ef2a.d.ts → vendor-2622f46640b7323f3bcc.d.ts} +0 -0
package/package.json
CHANGED
package/types/types.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { LinearElementEditor } from "./element/linearElementEditor";
|
|
|
5
5
|
import { SuggestedBinding } from "./element/binding";
|
|
6
6
|
import { ImportedDataState } from "./data/types";
|
|
7
7
|
import type App from "./components/App";
|
|
8
|
-
import type {
|
|
8
|
+
import type { throttleRAF } from "./utils";
|
|
9
9
|
import { Spreadsheet } from "./charts";
|
|
10
10
|
import { Language } from "./i18n";
|
|
11
11
|
import { ClipboardData } from "./clipboard";
|
|
@@ -471,8 +471,6 @@ export type ExcalidrawImperativeAPI = {
|
|
|
471
471
|
refresh: InstanceType<typeof App>["refresh"];
|
|
472
472
|
setToast: InstanceType<typeof App>["setToast"];
|
|
473
473
|
addFiles: (data: BinaryFileData[]) => void;
|
|
474
|
-
readyPromise: ResolvablePromise<ExcalidrawImperativeAPI>;
|
|
475
|
-
ready: true;
|
|
476
474
|
id: string;
|
|
477
475
|
setActiveTool: InstanceType<typeof App>["setActiveTool"];
|
|
478
476
|
setCursor: InstanceType<typeof App>["setCursor"];
|