mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-14 12:08:36 -05:00
Merge from vscode 5d18ad4c5902e3bddbc9f78da82dfc2ac349e908 (#9683)
This commit is contained in:
@@ -36,6 +36,14 @@ export const NOTEBOOK_DISPLAY_ORDER = [
|
||||
'text/plain'
|
||||
];
|
||||
|
||||
export interface NotebookDocumentMetadata {
|
||||
editable: boolean;
|
||||
}
|
||||
|
||||
export interface NotebookCellMetadata {
|
||||
editable: boolean;
|
||||
}
|
||||
|
||||
export interface INotebookDisplayOrder {
|
||||
defaultOrder: string[];
|
||||
userOrder?: string[];
|
||||
@@ -122,6 +130,7 @@ export interface ICell {
|
||||
language: string;
|
||||
cellKind: CellKind;
|
||||
outputs: IOutput[];
|
||||
metadata?: NotebookCellMetadata;
|
||||
onDidChangeOutputs?: Event<NotebookCellOutputsSplice[]>;
|
||||
resolveTextBufferFactory(): PieceTreeTextBufferFactory;
|
||||
// TODO@rebornix it should be later on replaced by moving textmodel resolution into CellTextModel
|
||||
|
||||
Reference in New Issue
Block a user