Delete cell

This commit is contained in:
rebornix
2020-01-23 14:09:25 -08:00
parent 7d4782160d
commit 42b45bb366
14 changed files with 270 additions and 17 deletions

View File

@@ -1411,7 +1411,9 @@ export interface ExtHostNotebookShape {
$executeNotebook(viewType: string, uri: URI): Promise<void>;
$executeNotebookCell(viewType: string, uri: URI, cellHandle: number): Promise<void>;
$createRawCell(viewType: string, uri: URI, index: number, language: string, type: 'markdown' | 'code'): Promise<modes.ICell | undefined>;
$deleteCell(viewType: string, uri: URI, index: number): Promise<boolean>;
$saveNotebook(viewType: string, uri: URI): Promise<boolean>;
$updateActiveEditor(viewType: string, uri: URI): Promise<void>;
}
export interface ExtHostStorageShape {