vodafone-station-cli
Version:
Access your Vodafone Station from the comfort of the command line.
15 lines (14 loc) • 656 B
TypeScript
import Command from '../../base-command';
export default class DisableHostExposureEntries extends Command {
static args: {
entries: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
};
static description: string;
static examples: string[];
static flags: {
ip: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
password: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
};
static strict: boolean;
run(): Promise<void>;
}