mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 17:41:53 +03:00
720a72ccb2
Closes #8681 https://github.com/enso-org/enso/assets/6566674/46a6de40-cbd0-427e-942d-b58ad4a9fd33
28 lines
892 B
TypeScript
28 lines
892 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare const PROJECT_MANAGER_URL: string
|
|
declare const RUNNING_VITEST: boolean
|
|
declare const IS_CLOUD_BUILD: boolean
|
|
|
|
interface Document {
|
|
caretPositionFromPoint(x: number, y: number): { offsetNode: Node; offset: number } | null
|
|
}
|
|
|
|
interface Window {
|
|
fileBrowserApi: FileBrowserApi
|
|
}
|
|
|
|
/** `window.fileBrowserApi` is a context bridge to the main process, when we're running in an
|
|
* Electron context.
|
|
*
|
|
* # Safety
|
|
*
|
|
* We're assuming that the main process has exposed the `fileBrowserApi` context bridge (see
|
|
* `app/ide-desktop/lib/client/src/preload.ts` for details), and that it contains the functions defined in this
|
|
* interface.
|
|
*/
|
|
interface FileBrowserApi {
|
|
/** Select path for local file or directory using the system file browser. */
|
|
readonly openFileBrowser: (kind: 'file' | 'directory' | 'any') => Promise<string[] | undefined>
|
|
}
|