mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode 073a24de05773f2261f89172987002dc0ae2f1cd (#9711)
This commit is contained in:
@@ -38,10 +38,13 @@ export const NOTEBOOK_DISPLAY_ORDER = [
|
||||
|
||||
export interface NotebookDocumentMetadata {
|
||||
editable: boolean;
|
||||
cellEditable?: boolean;
|
||||
cellRunnable?: boolean;
|
||||
}
|
||||
|
||||
export interface NotebookCellMetadata {
|
||||
editable: boolean;
|
||||
editable?: boolean;
|
||||
runnable?: boolean;
|
||||
}
|
||||
|
||||
export interface INotebookDisplayOrder {
|
||||
@@ -132,6 +135,7 @@ export interface ICell {
|
||||
outputs: IOutput[];
|
||||
metadata?: NotebookCellMetadata;
|
||||
onDidChangeOutputs?: Event<NotebookCellOutputsSplice[]>;
|
||||
onDidChangeMetadata: Event<NotebookCellMetadata | undefined>;
|
||||
resolveTextBufferFactory(): PieceTreeTextBufferFactory;
|
||||
// TODO@rebornix it should be later on replaced by moving textmodel resolution into CellTextModel
|
||||
contentChange(): void;
|
||||
|
||||
Reference in New Issue
Block a user