mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 09:35:38 -05:00
sqlAssessment sync display fix (#14574)
* sqlAssessment sync display fix * making append data Thenable<void>
This commit is contained in:
2
src/sql/azdata.proposed.d.ts
vendored
2
src/sql/azdata.proposed.d.ts
vendored
@@ -970,7 +970,7 @@ declare module 'azdata' {
|
||||
/**
|
||||
* Append data to an existing table data.
|
||||
*/
|
||||
appendData(data: any[][]): void;
|
||||
appendData(data: any[][]): Thenable<void>;
|
||||
}
|
||||
|
||||
export interface IconColumnCellValue {
|
||||
|
||||
@@ -1440,8 +1440,8 @@ class TableComponentWrapper extends ComponentWrapper implements azdata.TableComp
|
||||
return emitter && emitter.event;
|
||||
}
|
||||
|
||||
public appendData(v: any[][]): void {
|
||||
this.doAction(ModelViewAction.AppendData, v);
|
||||
public appendData(v: any[][]): Thenable<void> {
|
||||
return this.doAction(ModelViewAction.AppendData, v);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user