mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
add disposeTableDesigner (#17394)
This commit is contained in:
10
src/sql/azdata.proposed.d.ts
vendored
10
src/sql/azdata.proposed.d.ts
vendored
@@ -1028,6 +1028,12 @@ declare module 'azdata' {
|
||||
* @param viewModel the object contains the state of the table designer
|
||||
*/
|
||||
saveTable(table: TableInfo, viewModel: DesignerViewModel): Thenable<void>;
|
||||
|
||||
/**
|
||||
* Notify the provider that the table designer has been closed.
|
||||
* @param table the table information
|
||||
*/
|
||||
disposeTableDesigner(table: TableInfo): Thenable<void>;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1055,9 +1061,9 @@ declare module 'azdata' {
|
||||
*/
|
||||
isNewTable: boolean;
|
||||
/**
|
||||
* If this is not a new table, the id will be set to uniquely identify a table.
|
||||
* Unique identifier of the table. Will be used to decide whether a designer is already opened for the table.
|
||||
*/
|
||||
id?: string;
|
||||
id: string;
|
||||
/**
|
||||
* Extension can store additional information that the provider needs to uniquely identify a table.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user