Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JSONContent

type JSONContent = {
[key: string]: any;
type?: string;
attrs?: Record<string, any>;
content?: JSONContent[];
marks?: {
[key: string]: any;
type: string;
attrs?: Record<string, any>;
}
[]
;
text?: string;
}
;

§Type

§
{
[key: string]: any;
type?: string;
attrs?: Record<string, any>;
content?: JSONContent[];
marks?: {
[key: string]: any;
type: string;
attrs?: Record<string, any>;
}
[]
;
text?: string;
}
[src]