UNPKG

medium-proeditor

Version:

A powerful & customizable Medium-style rich text editor

18 lines 476 B
import type { Command } from 'prosemirror-state'; import { Feature } from '../../Feature'; declare module '../../types' { interface Commands { triggerCycleQuote: Command; } } /** * Matches a blockquote (`>` as input). */ export declare const blockquoteRegex: RegExp; /** * Matches a pull quote (`>>` as input). */ export declare const pullquoteRegex: RegExp; declare const Quote: Feature<any, any>; export default Quote; //# sourceMappingURL=index.d.ts.map