lambdaorm-cli
Version:
The lambdaorm command line interface
16 lines (15 loc) • 356 B
TypeScript
import { CommandModule, Argv, Arguments } from 'yargs';
export declare class PullCommand implements CommandModule {
command: string;
describe: string;
builder(args: Argv): Argv<{
w: unknown;
} & {
u: unknown;
} & {
e: unknown;
} & {
s: unknown;
}>;
handler(args: Arguments): Promise<void>;
}