Wait for clientSession to become available before running a cell. (#10796)

This commit is contained in:
Cory Rivera
2020-06-09 05:30:13 -07:00
committed by GitHub
parent c8a3fbca47
commit 59575aa305
5 changed files with 18 additions and 7 deletions

View File

@@ -39,6 +39,9 @@ export class NotebookModelStub implements INotebookModel {
get clientSession(): IClientSession {
throw new Error('method not implemented.');
}
get sessionLoadFinished(): Promise<void> {
throw new Error('method not implemented.');
}
get notebookManagers(): INotebookManager[] {
throw new Error('method not implemented.');
}