UNPKG

@jbrowse/core

Version:

JBrowse 2 core libraries used by plugins

7 lines (6 loc) 524 B
export declare function isFileSystemAccessSupported(): boolean; export declare function storeFileHandle(handle: FileSystemFileHandle): Promise<string>; export declare function getFileHandle(handleId: string): Promise<FileSystemFileHandle | undefined>; export declare function removeFileHandle(handleId: string): Promise<void>; export declare function verifyPermission(handle: FileSystemFileHandle, requestPermission?: boolean): Promise<boolean>; export declare function cleanupStaleHandles(maxAgeMs: number): Promise<void>;