jodit-pro
Version:
PRO Version of Jodit Editor
19 lines (18 loc) • 480 B
TypeScript
import type { IToolDefinition } from "../interface/index";
/**
* Built-in tools collection
* Each tool contains definition and executor
*/
export declare const BUILT_IN_TOOLS: Record<string, IToolDefinition>;
/**
* Get tool names
*/
export declare function getToolNames(): string[];
/**
* Get tool by name
*/
export declare function getTool(name: string): IToolDefinition | undefined;
/**
* Check if tool exists
*/
export declare function hasTool(name: string): boolean;