UNPKG

penguins-eggs

Version:

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

32 lines (31 loc) 753 B
/** * ./src/commands/tools/stat.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 ToolsStat extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/core/interfaces").BooleanFlag<void>; month: import("@oclif/core/interfaces").BooleanFlag<boolean>; year: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; /** * */ run(): Promise<void>; /** * * @param start * @param end * @param type */ show(start: string, end: string, type: string): Promise<void>; }