UNPKG

penguins-eggs

Version:

A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others

24 lines (23 loc) 532 B
/** * ./src/commands/status.ts * penguins-eggs v.10.0.0 / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import { Command } from '@oclif/core'; /** * */ export default class Status extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/core/interfaces").BooleanFlag<void>; verbose: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; /** * */ run(): Promise<void>; }