import { Command, Commander, CommandExecutor } from "./core"; import { Graph } from "../core"; /** * text 命令执行器 */ export declare class TextExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } export default TextExecutor;