UNPKG

346 BTypeScriptView Raw
1import { Command, flags } from '@oclif/command';
2export default class Pack extends Command {
3 static description: string;
4 static flags: {
5 root: flags.IOptionFlag<string>;
6 targets: flags.IOptionFlag<string | undefined>;
7 xz: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
8 };
9 run(): Promise<void>;
10}