@@ -53,7 +53,7 @@ declare module 'vscode' {
53
53
/**
54
54
* Additional attributes of a cell metadata.
55
55
*/
56
- custom ?: { [ key : string ] : any } ;
56
+ custom ?: { [ key : string ] : any ; } ;
57
57
}
58
58
59
59
export interface CellDisplayOutput {
@@ -177,7 +177,7 @@ declare module 'vscode' {
177
177
/**
178
178
* Additional attributes of a cell metadata.
179
179
*/
180
- custom ?: { [ key : string ] : any } ;
180
+ custom ?: { [ key : string ] : any ; } ;
181
181
}
182
182
183
183
export interface NotebookCell {
@@ -227,7 +227,7 @@ declare module 'vscode' {
227
227
/**
228
228
* Additional attributes of the document metadata.
229
229
*/
230
- custom ?: { [ key : string ] : any } ;
230
+ custom ?: { [ key : string ] : any ; } ;
231
231
232
232
/**
233
233
* The document's current run state
@@ -284,7 +284,7 @@ declare module 'vscode' {
284
284
285
285
locationAt ( positionOrRange : Position | Range ) : Location ;
286
286
positionAt ( location : Location ) : Position ;
287
- contains ( uri : Uri ) : boolean
287
+ contains ( uri : Uri ) : boolean ;
288
288
}
289
289
290
290
export interface WorkspaceEdit {
@@ -613,7 +613,7 @@ declare module 'vscode' {
613
613
cancelAllCellsExecution ( document : NotebookDocument ) : void ;
614
614
}
615
615
616
- export type NotebookFilenamePattern = GlobPattern | { include : GlobPattern ; exclude : GlobPattern } ;
616
+ export type NotebookFilenamePattern = GlobPattern | { include : GlobPattern ; exclude : GlobPattern ; } ;
617
617
618
618
export interface NotebookDocumentFilter {
619
619
viewType ?: string | string [ ] ;
@@ -719,7 +719,7 @@ declare module 'vscode' {
719
719
*/
720
720
export function createConcatTextDocument ( notebook : NotebookDocument , selector ?: DocumentSelector ) : NotebookConcatTextDocument ;
721
721
722
- export const onDidChangeActiveNotebookKernel : Event < { document : NotebookDocument , kernel : NotebookKernel | undefined } > ;
722
+ export const onDidChangeActiveNotebookKernel : Event < { document : NotebookDocument , kernel : NotebookKernel | undefined ; } > ;
723
723
724
724
/**
725
725
* Creates a notebook cell status bar [item](#NotebookCellStatusBarItem).
0 commit comments