Interface TheiaFilesystemAPI

interface TheiaFilesystemAPI {
    showOpenDialog(options): Promise<undefined | string[]>;
    showSaveDialog(options): Promise<undefined | string>;
}

Methods