Add support for VS Code notebook Open & Close events in extension APIs (#17992)

This commit is contained in:
Cory Rivera
2022-01-07 15:48:08 -08:00
committed by GitHub
parent 4b9c43848e
commit d13dd4d228
9 changed files with 276 additions and 87 deletions

View File

@@ -92,6 +92,11 @@ declare module 'azdata' {
*/
dispose(): void;
}
/**
* An event that is emitted when a [notebook document](#NotebookDocument) is closed.
*/
export const onDidCloseNotebookDocument: vscode.Event<NotebookDocument>;
}
export type SqlDbType = 'BigInt' | 'Binary' | 'Bit' | 'Char' | 'DateTime' | 'Decimal'