2d541f2e32
And disable eslint when building in prod mode Signed-off-by: Thomas Citharel <tcit@tcit.fr>
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
declare module "tiptap-commands" {
|
|
import { EditorView } from "prosemirror-view";
|
|
import { Transaction, EditorState, Plugin } from "prosemirror-state";
|
|
import { InputRule } from "prosemirror-inputrules";
|
|
import { NodeType, MarkType } from "prosemirror-model";
|
|
|
|
export interface DispatchFn {
|
|
(tr: Transaction): boolean;
|
|
}
|
|
|
|
export interface Command {
|
|
(...params: any[]): CommandFunction;
|
|
}
|
|
|
|
export interface CommandFunction {
|
|
(
|
|
state: EditorState,
|
|
dispatch: DispatchFn | undefined,
|
|
view: EditorView
|
|
): boolean;
|
|
}
|
|
|
|
export function toggleWrap(type: NodeType): Command;
|
|
|
|
export function wrappingInputRule(
|
|
regexp: RegExp,
|
|
nodeType: NodeType,
|
|
getAttrs?: (arg: {} | string[]) => object | undefined,
|
|
joinPredicate?: (strs: string[], node: Node) => boolean
|
|
): InputRule;
|
|
|
|
export function toggleMark(
|
|
type: MarkType,
|
|
attrs?: { [key: string]: any }
|
|
): Command;
|
|
|
|
export function pasteRule(
|
|
regexp: RegExp,
|
|
type: string,
|
|
getAttrs: (() => { [key: string]: any }) | { [key: string]: any }
|
|
): Plugin;
|
|
}
|