@@ -53,7 +53,7 @@ declare module 'vscode' {
5353 /**
5454 * Additional attributes of a cell metadata.
5555 */
56- custom ?: { [ key : string ] : any } ;
56+ custom ?: { [ key : string ] : any ; } ;
5757 }
5858
5959 export interface CellDisplayOutput {
@@ -177,7 +177,7 @@ declare module 'vscode' {
177177 /**
178178 * Additional attributes of a cell metadata.
179179 */
180- custom ?: { [ key : string ] : any } ;
180+ custom ?: { [ key : string ] : any ; } ;
181181 }
182182
183183 export interface NotebookCell {
@@ -227,7 +227,7 @@ declare module 'vscode' {
227227 /**
228228 * Additional attributes of the document metadata.
229229 */
230- custom ?: { [ key : string ] : any } ;
230+ custom ?: { [ key : string ] : any ; } ;
231231
232232 /**
233233 * The document's current run state
@@ -284,7 +284,7 @@ declare module 'vscode' {
284284
285285 locationAt ( positionOrRange : Position | Range ) : Location ;
286286 positionAt ( location : Location ) : Position ;
287- contains ( uri : Uri ) : boolean
287+ contains ( uri : Uri ) : boolean ;
288288 }
289289
290290 export interface WorkspaceEdit {
@@ -613,7 +613,7 @@ declare module 'vscode' {
613613 cancelAllCellsExecution ( document : NotebookDocument ) : void ;
614614 }
615615
616- export type NotebookFilenamePattern = GlobPattern | { include : GlobPattern ; exclude : GlobPattern } ;
616+ export type NotebookFilenamePattern = GlobPattern | { include : GlobPattern ; exclude : GlobPattern ; } ;
617617
618618 export interface NotebookDocumentFilter {
619619 viewType ?: string | string [ ] ;
@@ -719,7 +719,7 @@ declare module 'vscode' {
719719 */
720720 export function createConcatTextDocument ( notebook : NotebookDocument , selector ?: DocumentSelector ) : NotebookConcatTextDocument ;
721721
722- export const onDidChangeActiveNotebookKernel : Event < { document : NotebookDocument , kernel : NotebookKernel | undefined } > ;
722+ export const onDidChangeActiveNotebookKernel : Event < { document : NotebookDocument , kernel : NotebookKernel | undefined ; } > ;
723723
724724 /**
725725 * Creates a notebook cell status bar [item](#NotebookCellStatusBarItem).
0 commit comments