@light-merlin-dark/tok
Version:
Fast token estimation and cost calculation for enterprise LLMs with CLI and MCP support
9 lines • 379 B
TypeScript
import { CommandResult, CommandOptions, RuntimeContext } from './shared/core';
export interface ParsedArgs {
command: string;
commandArgs: string[];
options: CommandOptions;
}
export declare function parseArgs(args: string[]): ParsedArgs;
export declare function route(args: string[], ctx: RuntimeContext): Promise<CommandResult>;
//# sourceMappingURL=router.d.ts.map