aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/types/filesystemAccess.d.ts
blob: e9accc775f89bb3eb060f327bebe14f3794d2b49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * SPDX-FileCopyrightText: 2024 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

interface FilePickerOptions {
  id?: string;
  types?: {
    description?: string;
    accept: Record<string, string[]>;
  }[];
}

interface FilePickerSaveOptions extends FilePickerOptions {
  suggestedName?: string;
}

interface Window {
  showOpenFilePicker?: (
    options?: FilePickerOpenOptions,
  ) => Promise<FileSystemFileHandle[]>;
  showSaveFilePicker?: (
    options?: FilePickerSaveOptions,
  ) => Promise<FileSystemFileHandle>;
}

interface FileSystemHandlePermissionDescriptor {
  mode?: 'read' | 'readwrite';
}

interface FileSystemHandle {
  queryPermission?: (
    options?: FileSystemHandlePermissionDescriptor,
  ) => Promise<PermissionStatus>;

  requestPermission?: (
    options?: FileSystemHandlePermissionDescriptor,
  ) => Promise<PermissionStatus>;
}