Add collapsed argument to insertCell extension method. (#7635)

This commit is contained in:
Cory Rivera
2019-10-10 14:06:31 -07:00
committed by GitHub
parent bf00a6b695
commit 777c188a3f
3 changed files with 21 additions and 10 deletions

3
src/sql/azdata.d.ts vendored
View File

@@ -4440,8 +4440,9 @@ declare module 'azdata' {
*
* @param index The position where the new text should be inserted.
* @param value The new text this operation should insert.
* @param collapsed The collapsed state of the new cell. Default value is `false` if not provided.
*/
insertCell(value: ICellContents, index?: number): void;
insertCell(value: ICellContents, index?: number, collapsed?: boolean): void;
/**
* Delete a certain cell.