UNPKG

346 BTypeScriptView Raw
1import * as yargs from "yargs";
2/**
3 * Clear cache command.
4 */
5export declare class CacheClearCommand implements yargs.CommandModule {
6 command: string;
7 describe: string;
8 builder(args: yargs.Argv): yargs.Argv<{
9 connection: string;
10 } & {
11 config: string;
12 }>;
13 handler(args: yargs.Arguments): Promise<void>;
14}