add disposeTableDesigner (#17394)

This commit is contained in:
Alan Ren
2021-10-19 14:28:56 -07:00
committed by GitHub
parent ec8292adb7
commit 328ed83cb9
8 changed files with 57 additions and 21 deletions

View File

@@ -521,6 +521,9 @@ export class MainThreadDataProtocol extends Disposable implements MainThreadData
},
saveTable(tableInfo: azdata.designers.TableInfo, data: azdata.designers.DesignerViewModel): Thenable<void> {
return self._proxy.$saveTable(handle, tableInfo, data);
},
disposeTableDesigner(tableInfo: azdata.designers.TableInfo): Thenable<void> {
return self._proxy.$disposeTableDesigner(handle, tableInfo);
}
});