UNPKG

@ayonli/jsext

Version:

A JavaScript extension package for building strong and modern applications.

8 lines (7 loc) 375 B
export declare function windowsPickFile(title?: string, options?: { type?: string | undefined; forSave?: boolean | undefined; defaultName?: string | undefined; }): Promise<string | null>; export declare function windowsPickFiles(title?: string, type?: string): Promise<string[]>; export declare function windowsPickFolder(title?: string): Promise<string | null>;