UNPKG

393 BTypeScriptView Raw
1import { flags } from "@oclif/command";
2import { BaseCommand } from "./command";
3export declare class DeserializeCommand extends BaseCommand {
4 static description: string;
5 static flags: {
6 data: flags.IOptionFlag<string>;
7 type: flags.IOptionFlag<string>;
8 log: flags.IOptionFlag<string>;
9 copy: flags.IOptionFlag<string>;
10 };
11 run(): Promise<void>;
12}