MCPcopy Create free account
hub / github.com/dethcrypto/dethcode / CellDisplayOutput

Interface CellDisplayOutput

packages/ethereum-viewer/src/vscode.proposed.d.ts:1136–1158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1134 }
1135
1136 export interface CellDisplayOutput {
1137 outputKind: CellOutputKind.Rich;
1138 /**
1139 * { mime_type: value }
1140 *
1141 * Example:
1142 * ```json
1143 * {
1144 * "outputKind": vscode.CellOutputKind.Rich,
1145 * "data": {
1146 * "text/html": [
1147 * "<h1>Hello</h1>"
1148 * ],
1149 * "text/plain": [
1150 * "<IPython.lib.display.IFrame at 0x11dee3e80>"
1151 * ]
1152 * }
1153 * }
1154 */
1155 data: { [key: string]: any };
1156
1157 readonly metadata?: NotebookCellOutputMetadata;
1158 }
1159
1160 export type CellOutput =
1161 | CellStreamOutput

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected