mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 01:25:36 -05:00
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as nbformat from '@jupyterlab/nbformat';
|
|
|
|
/**
|
|
* Metadata we store in VS Code cell output items.
|
|
* This contains the original metadata from the Jupyter outputs.
|
|
*/
|
|
export interface CellOutputMetadata {
|
|
/**
|
|
* Cell output metadata.
|
|
*/
|
|
metadata?: any;
|
|
|
|
/**
|
|
* Transient data from Jupyter.
|
|
*/
|
|
transient?: {
|
|
/**
|
|
* This is used for updating the output in other cells.
|
|
* We don't know of other properties, but this is definitely used.
|
|
*/
|
|
display_id?: string;
|
|
} & any;
|
|
|
|
/**
|
|
* Original cell output type
|
|
*/
|
|
outputType: nbformat.OutputType | string;
|
|
|
|
executionCount?: nbformat.IExecuteResult['ExecutionCount'];
|
|
|
|
/**
|
|
* Whether the original Mime data is JSON or not.
|
|
* This properly only exists in metadata for NotebookCellOutputItems
|
|
* (this is something we have added)
|
|
*/
|
|
__isJson?: boolean;
|
|
}
|
|
|
|
|
|
/**
|
|
* Metadata we store in VS Code cells.
|
|
* This contains the original metadata from the Jupyuter cells.
|
|
*/
|
|
export interface CellMetadata {
|
|
/**
|
|
* Cell id for notebooks created with the new 4.5 version of nbformat.
|
|
*/
|
|
id?: string;
|
|
/**
|
|
* Stores attachments for cells.
|
|
*/
|
|
attachments?: nbformat.IAttachments;
|
|
/**
|
|
* Stores cell metadata.
|
|
*/
|
|
metadata?: Partial<nbformat.ICellMetadata>;
|
|
}
|