Add collapse/expand functionality to notebook code cells. (#7481)

This commit is contained in:
Cory Rivera
2019-10-03 16:50:47 -07:00
committed by GitHub
parent 080d9bbaa6
commit 6b29fd05bd
29 changed files with 492 additions and 34 deletions

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

@@ -4536,6 +4536,7 @@ declare module 'azdata' {
export interface INotebookMetadata {
kernelspec: IKernelInfo;
language_info?: ILanguageInfo;
tags?: string[];
}
export interface IKernelInfo {
@@ -4567,6 +4568,7 @@ declare module 'azdata' {
source: string | string[];
metadata?: {
language?: string;
tags?: string[];
azdata_cell_guid?: string;
};
execution_count?: number;