@@ -297,14 +297,14 @@ export type VersionedNotebookDocumentIdentifier = {
297297/**
298298 * @since 3.18.0
299299 */
300- export interface NotebookCellLanguage {
300+ export type NotebookCellLanguage = {
301301 language : string ;
302- }
302+ } ;
303303
304304/**
305305 * @since 3.18.0
306306 */
307- export interface NotebookDocumentFilterWithNotebook {
307+ export type NotebookDocumentFilterWithNotebook = {
308308 /**
309309 * The notebook to be synced If a string
310310 * value is provided it matches against the
@@ -316,13 +316,13 @@ export interface NotebookDocumentFilterWithNotebook {
316316 * The cells of the matching notebook to be synced.
317317 */
318318 cells ?: NotebookCellLanguage [ ] ;
319- }
319+ } ;
320320
321321
322322/**
323323 * @since 3.18.0
324324 */
325- export interface NotebookDocumentFilterWithCells {
325+ export type NotebookDocumentFilterWithCells = {
326326 /**
327327 * The notebook to be synced If a string
328328 * value is provided it matches against the
@@ -334,7 +334,7 @@ export interface NotebookDocumentFilterWithCells {
334334 * The cells of the matching notebook to be synced.
335335 */
336336 cells : NotebookCellLanguage [ ] ;
337- }
337+ } ;
338338
339339/**
340340 * Options specific to a notebook plus its cells
@@ -451,7 +451,7 @@ export namespace NotebookCellArrayChange {
451451 *
452452 * @since 3.18.0
453453 */
454- export interface NotebookDocumentCellChangeStructure {
454+ export type NotebookDocumentCellChangeStructure = {
455455 /**
456456 * The change to the cell array.
457457 */
@@ -466,24 +466,24 @@ export interface NotebookDocumentCellChangeStructure {
466466 * Additional closed cell text documents.
467467 */
468468 didClose ?: TextDocumentIdentifier [ ] ;
469- }
469+ } ;
470470
471471/**
472472 * Content changes to a cell in a notebook document.
473473 *
474474 * @since 3.18.0
475475 */
476- export interface NotebookDocumentCellContentChanges {
476+ export type NotebookDocumentCellContentChanges = {
477477 document : VersionedTextDocumentIdentifier ;
478478 changes : TextDocumentContentChangeEvent [ ] ;
479- }
479+ } ;
480480
481481/**
482482 * Cell changes to a notebook document.
483483 *
484484 * @since 3.18.0
485485 */
486- export interface NotebookDocumentCellChanges {
486+ export type NotebookDocumentCellChanges = {
487487 /**
488488 * Changes to the cell structure to add or
489489 * remove cells.
@@ -500,7 +500,7 @@ export interface NotebookDocumentCellChanges {
500500 * Changes to the text content of notebook cells.
501501 */
502502 textContent ?: NotebookDocumentCellContentChanges [ ] ;
503- }
503+ } ;
504504
505505/**
506506 * A change event for a notebook document.
0 commit comments