mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 17:23:21 -05:00
Use remote file dialog for database and server properties dialogs (#24390)
This commit is contained in:
7
src/sql/azdata.proposed.d.ts
vendored
7
src/sql/azdata.proposed.d.ts
vendored
@@ -2068,9 +2068,14 @@ declare module 'azdata' {
|
||||
* @param connectionUri The URI of the connection to the target server
|
||||
* @param targetPath The file path on the server machine to open by default in the dialog
|
||||
* @param fileFilters The filters used to limit which files are displayed in the file browser
|
||||
* @param showFoldersOnly Optional argument to specify whether the browser should only show folders
|
||||
* @returns The path of the file chosen from the dialog, and undefined if the dialog is closed without selecting anything.
|
||||
*/
|
||||
export function openServerFileBrowserDialog(connectionUri: string, targetPath: string, fileFilters: FileFilters[]): Thenable<string | undefined>;
|
||||
export function openServerFileBrowserDialog(connectionUri: string, targetPath: string, fileFilters: FileFilters[], showFoldersOnly?: boolean): Thenable<string | undefined>;
|
||||
}
|
||||
|
||||
export interface FileBrowserProvider extends DataProvider {
|
||||
openFileBrowser(ownerUri: string, expandPath: string, fileFilters: string[], changeFilter: boolean, showFoldersOnly?: boolean): Thenable<boolean>;
|
||||
}
|
||||
|
||||
export interface TableComponent {
|
||||
|
||||
Reference in New Issue
Block a user