mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
refactor: auto ordered imports (#9163)
All checks were successful
Tests / test (push) Successful in 4m38s
All checks were successful
Tests / test (push) Successful in 4m38s
This commit is contained in:
parent
82b9a6b464
commit
21ffaf4d76
421 changed files with 3532 additions and 2763 deletions
|
@ -1,5 +1,19 @@
|
|||
import type { JSX } from "react";
|
||||
import type React from "react";
|
||||
import type { Action } from "./actions/types";
|
||||
import type { Spreadsheet } from "./charts";
|
||||
import type { ClipboardData } from "./clipboard";
|
||||
import type App from "./components/App";
|
||||
import type Library from "./data/library";
|
||||
import type { FileSystemHandle } from "./data/filesystem";
|
||||
import type { IMAGE_MIME_TYPES, MIME_TYPES } from "./constants";
|
||||
import type { ContextMenuItems } from "./components/ContextMenu";
|
||||
import type { SnapLine } from "./snapping";
|
||||
import type { Merge, MaybePromise, ValueOf, MakeBrand } from "./utility-types";
|
||||
import type { CaptureUpdateActionType } from "./store";
|
||||
import type { UserIdleState } from "./constants";
|
||||
import type { ImportedDataState } from "./data/types";
|
||||
import type { SuggestedBinding } from "./element/binding";
|
||||
import type { LinearElementEditor } from "./element/linearElementEditor";
|
||||
import type { MaybeTransformHandleType } from "./element/transformHandles";
|
||||
import type {
|
||||
PointerType,
|
||||
ExcalidrawLinearElement,
|
||||
|
@ -24,25 +38,11 @@ import type {
|
|||
OrderedExcalidrawElement,
|
||||
ExcalidrawNonSelectionElement,
|
||||
} from "./element/types";
|
||||
import type { Action } from "./actions/types";
|
||||
import type { LinearElementEditor } from "./element/linearElementEditor";
|
||||
import type { SuggestedBinding } from "./element/binding";
|
||||
import type { ImportedDataState } from "./data/types";
|
||||
import type App from "./components/App";
|
||||
import type { throttleRAF } from "./utils";
|
||||
import type { Spreadsheet } from "./charts";
|
||||
import type { Language } from "./i18n";
|
||||
import type { ClipboardData } from "./clipboard";
|
||||
import type { isOverScrollBars } from "./scene/scrollbars";
|
||||
import type { MaybeTransformHandleType } from "./element/transformHandles";
|
||||
import type Library from "./data/library";
|
||||
import type { FileSystemHandle } from "./data/filesystem";
|
||||
import type { IMAGE_MIME_TYPES, MIME_TYPES } from "./constants";
|
||||
import type { ContextMenuItems } from "./components/ContextMenu";
|
||||
import type { SnapLine } from "./snapping";
|
||||
import type { Merge, MaybePromise, ValueOf, MakeBrand } from "./utility-types";
|
||||
import type { CaptureUpdateActionType } from "./store";
|
||||
import type { UserIdleState } from "./constants";
|
||||
import type { throttleRAF } from "./utils";
|
||||
import type React from "react";
|
||||
import type { JSX } from "react";
|
||||
|
||||
export type SocketId = string & { _brand: "SocketId" };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue