export type JSONNode = { attrs?: object; content?: Array; marks?: any[]; text?: string; type: string; }; export type JSONDocNode = { content: JSONNode[]; type: 'doc'; version: number; };