oclif
Version:
oclif: create your own CLI
17 lines (16 loc) • 834 B
TypeScript
import { Command, Interfaces } from '@oclif/core';
export default class PackWin extends Command {
static description: string;
static flags: {
'additional-cli': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
'defender-exclusion': Interfaces.OptionFlag<"hidden" | "checked" | "unchecked", Interfaces.CustomOptions>;
'prune-lockfiles': Interfaces.BooleanFlag<boolean>;
root: Interfaces.OptionFlag<string, Interfaces.CustomOptions>;
sha: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
tarball: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
targets: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
};
static summary: string;
run(): Promise<void>;
private checkForNSIS;
}