reiso
Version:
14 lines (13 loc) • 381 B
TypeScript
import { Command, Action } from './Commander';
export declare let commands: {
[name: string]: Command;
};
export declare function getCommands(): {
[name: string]: Command;
};
export interface ToolOption {
name: string;
description?: string;
}
export declare function RegisterCommand(opt: ToolOption, func: Action): void;
export declare function clearModel(): void;