util.d.ts 270 B

1234
  1. import { IFileSystemDirectoryHandle } from '../fsa/types';
  2. import type { FsLocation } from './types';
  3. export declare const pathToLocation: (path: string) => FsLocation;
  4. export declare const testDirectoryIsWritable: (dir: IFileSystemDirectoryHandle) => Promise<boolean>;