Skip to content

Commit 3f461ac

Browse files
committed
Fix outputsChange type
1 parent 76e4073 commit 3f461ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

javascript/src/api.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import type {
2222
} from '@lumino/coreutils';
2323
import type { IObservableDisposable } from '@lumino/disposable';
2424
import type { ISignal } from '@lumino/signaling';
25+
import * as Y from 'yjs';
2526

2627
/**
2728
* Changes on Sequence-like data are expressed as Quill-inspired deltas.
@@ -737,7 +738,7 @@ export type CellChange = SourceChange & {
737738
/**
738739
* Cell output changes
739740
*/
740-
outputsChange?: Delta<nbformat.IOutput[]>;
741+
outputsChange?: Delta<Y.Map<any>>;
741742
/**
742743
* Cell execution count change
743744
*/

0 commit comments

Comments
 (0)