File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ class SidecarModel extends OutputModel {
29
29
30
30
initialize ( attributes : any , options : any ) {
31
31
super . initialize ( attributes , options ) ;
32
- // FIXME: Argument of type 'undefined' is not assignable to parameter of type 'IMessage<MessageType>'.
33
- this . widget_manager . display_model ( undefined , this , { } ) ;
32
+ this . widget_manager . display_model ( undefined as any , this , { } ) ;
34
33
}
35
34
36
35
static serializers : any = {
Original file line number Diff line number Diff line change @@ -21,8 +21,7 @@ class MockComm {
21
21
on_msg ( fn : Function | null ) {
22
22
this . _on_msg = fn ;
23
23
}
24
- // FIXME: Namespace '"REDACTED/jupyterlab-sidecar/node_modules/@jupyterlab/services/lib/kernel/messages"' has no exported member 'ICommMsg'.
25
- _process_msg ( msg : services . KernelMessage . ICommMsg ) {
24
+ _process_msg ( msg : services . KernelMessage . ICommMsgMsg ) {
26
25
if ( this . _on_msg ) {
27
26
return this . _on_msg ( msg ) ;
28
27
} else {
You can’t perform that action at this time.
0 commit comments