UNPKG

@fellow/prosemirror-recreate-transform

Version:

Create a set of steps transforming one prosemirror json document to another

11 lines (9 loc) 166 B
export interface JSONObject { [p: string]: JSONValue; } export type JSONValue = | string | number | boolean | JSONObject | Array<JSONValue>;