UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

4 lines (3 loc) 262 B
import type { Fragment, Node, Schema } from 'prosemirror-model'; import type { PmJsonTextNode, PmJsonNode } from './types'; export declare const fromJSON: (schema: Schema, json: PmJsonNode | PmJsonTextNode, createFragment: (nodes?: Node[]) => Fragment) => Node;