mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-11-10 07:45:20 +01:00
refactor: auto ordered imports (#9163)
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
import type { FileSystemHandle } from "browser-fs-access";
|
||||
import {
|
||||
fileOpen as _fileOpen,
|
||||
fileSave as _fileSave,
|
||||
supported as nativeFileSystemSupported,
|
||||
} from "browser-fs-access";
|
||||
|
||||
import { EVENT, MIME_TYPES } from "../constants";
|
||||
import { AbortError } from "../errors";
|
||||
import { debounce } from "../utils";
|
||||
|
||||
import type { FileSystemHandle } from "browser-fs-access";
|
||||
|
||||
type FILE_EXTENSION = Exclude<keyof typeof MIME_TYPES, "binary">;
|
||||
|
||||
const INPUT_CHANGE_INTERVAL_MS = 500;
|
||||
|
||||
Reference in New Issue
Block a user