UNPKG

509 BTypeScriptView Raw
1import BaseCommand from '../base-command';
2export default class Decrypt extends BaseCommand {
3 static description: string;
4 static hidden: boolean;
5 static flags: {
6 help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
7 path: import("@oclif/command/lib/flags").IOptionFlag<string | undefined>;
8 silent: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
9 };
10 static args: {
11 name: string;
12 required: boolean;
13 }[];
14 run(): Promise<void>;
15}