export {}; declare module 'prosemirror-model' { interface NodeSpec { /** * Determines whether this node is part of complex block, * e.g. yfm-cut, yfm-note, tables, etc... * And indicates its own role */ complex?: 'root' | 'inner' | 'leaf'; escapeText?: boolean; /** * Set `false` to disable gapcursor selection inside this node. * @default true */ gapcursor?: boolean; } interface MarkSpec { /** * Can be used to indicate that this mark contains code. */ code?: boolean; } }