mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 01:25:37 -05:00
List databases for publish quickpick (#16368)
* List databases for publish quickpick * missed word
This commit is contained in:
@@ -28,8 +28,16 @@ declare module 'vscode-mssql' {
|
||||
|
||||
/**
|
||||
* Prompts the user to select an existing connection or create a new one, and then returns the result
|
||||
* @param ignoreFocusOut Whether the quickpick prompt ignores focus out (default false)
|
||||
*/
|
||||
promptForConnection(): Promise<IConnectionInfo | undefined>
|
||||
promptForConnection(ignoreFocusOut?: boolean): Promise<IConnectionInfo | undefined>;
|
||||
|
||||
/**
|
||||
* Lists the databases for a given connection. An error is thrown and displayed to the user if an
|
||||
* error occurs while connecting
|
||||
* @param connection The connection to list the databases for
|
||||
*/
|
||||
listDatabases(connection: IConnectionInfo): Promise<string[]>;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user