MCPcopy
hub / github.com/marimo-team/marimo / components

Interface components

packages/openapi/src/session.ts:8–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6export type paths = Record<string, never>;
7export type webhooks = Record<string, never>;
8export interface components {
9 schemas: {
10 Cell: {
11 code_hash: string | null;
12 console: (
13 | components["schemas"]["StreamOutput"]
14 | components["schemas"]["StreamMediaOutput"]
15 )[];
16 id: string;
17 outputs: (
18 | components["schemas"]["ErrorOutput"]
19 | components["schemas"]["DataOutput"]
20 )[];
21 };
22 DataOutput: {
23 data: {
24 [key: string]: unknown;
25 };
26 /** @enum {string} */
27 type: "data";
28 };
29 ErrorOutput: {
30 ename: string;
31 evalue: string;
32 traceback: string[];
33 /** @enum {string} */
34 type: "error";
35 };
36 NotebookSessionMetadata: {
37 marimo_version: string | null;
38 script_metadata_hash: string | null;
39 };
40 NotebookSessionV1: {
41 cells: components["schemas"]["Cell"][];
42 metadata: components["schemas"]["NotebookSessionMetadata"];
43 version: string;
44 };
45 StreamMediaOutput: {
46 data: string;
47 /** @enum {string} */
48 mimetype:
49 | "application/json"
50 | "application/vnd.marimo+error"
51 | "application/vnd.marimo+traceback"
52 | "application/vnd.marimo+mimebundle"
53 | "application/vnd.vega.v5+json"
54 | "application/vnd.vegalite.v5+json"
55 | "application/vnd.vega.v6+json"
56 | "application/vnd.vegalite.v6+json"
57 | "application/vnd.jupyter.widget-view+json"
58 | "image/png"
59 | "image/svg+xml"
60 | "image/tiff"
61 | "image/avif"
62 | "image/bmp"
63 | "image/gif"
64 | "image/jpeg"
65 | "video/mp4"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…