append data functionality (#13120)

append data functionality
This commit is contained in:
Vladimir Chernov
2020-10-29 01:57:08 +03:00
committed by GitHub
parent 31817c5494
commit e679d70a4b
7 changed files with 30 additions and 8 deletions

View File

@@ -803,4 +803,12 @@ declare module 'azdata' {
*/
headerFilter?: boolean,
}
export interface TableComponent {
/**
* Append data to an exsiting table data.
*/
appendData(data: any[][]);
}
}