lambdaorm-cli
Version:
The lambdaorm command line interface
20 lines (19 loc) • 460 B
TypeScript
import { CommandModule, Argv, Arguments } from 'yargs';
export declare class DropCommand implements CommandModule {
command: string;
describe: string;
builder(args: Argv): Argv<{
w: string | undefined;
} & {
s: string | undefined;
} & {
e: string | undefined;
} & {
o: string | undefined;
} & {
f: unknown;
} & {
u: unknown;
}>;
handler(args: Arguments): Promise<void>;
}