UNPKG

@zzck.dev/tui

Version:

TS Text-based user inteface & commandline parser

10 lines (9 loc) 276 B
import { IActionCall } from "./iaction-call"; export declare class ActionCallCreationError extends Error { constructor(msg: string); } export declare class ActionCall implements IActionCall { command: string; args: Array<string>; constructor(input: string); }