UNPKG

quicksilver-cli

Version:
12 lines (11 loc) 397 B
import { Command } from "./command"; import { Field } from "./field/field"; export declare class TestCommand extends Command { static readonly NAME: string; static readonly ALIAS: string[]; static readonly FIELDS: Field[]; static readonly DESCRIPTION: string; constructor(workspace: string, params: string[]); run(): Promise<void>; printSomething(): void; }