mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
notebook: address messaging api changes
This commit is contained in:
@@ -23,7 +23,7 @@ export class MainThreadNotebookRenderers extends Disposable implements MainThrea
|
||||
}));
|
||||
}
|
||||
|
||||
$postMessage(rendererId: string, message: unknown): void {
|
||||
this.messaging.fireDidReceiveMessage(rendererId, message);
|
||||
$postMessage(editorId: string, rendererId: string, message: unknown): void {
|
||||
this.messaging.fireDidReceiveMessage(editorId, rendererId, message);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user