Deno.jupyter.MediaBundle

A collection of supported media types and data for Jupyter frontends.

type MediaBundle = {
[key: string]: string | object | undefined;
text/plain?: string;
text/html?: string;
image/svg+xml?: string;
text/markdown?: string;
application/javascript?: string;
image/png?: string;
image/jpeg?: string;
image/gif?: string;
application/pdf?: string;
application/json?: object;
application/geo+json?: object;
application/vdom.v1+json?: object;
application/vnd.plotly.v1+json?: object;
application/vnd.vega.v5+json?: VegaObject;
application/vnd.vegalite.v4+json?: VegaObject;
application/vnd.vegalite.v5+json?: VegaObject;
}
;

§Type

§
{
[key: string]: string | object | undefined;
text/plain?: string;
text/html?: string;
image/svg+xml?: string;
text/markdown?: string;
application/javascript?: string;
image/png?: string;
image/jpeg?: string;
image/gif?: string;
application/pdf?: string;
application/json?: object;
application/geo+json?: object;
application/vdom.v1+json?: object;
application/vnd.plotly.v1+json?: object;
application/vnd.vega.v5+json?: VegaObject;
application/vnd.vegalite.v4+json?: VegaObject;
application/vnd.vegalite.v5+json?: VegaObject;
}
[src]