UNPKG

633 BTypeScriptView Raw
1import { Command } from '../command';
2/**
3 * IsObsolete command.
4 */
5export default class IsObsolete extends Command {
6 /**
7 * Description.
8 */
9 static readonly description = "check package is obsolete";
10 /**
11 * Examples.
12 */
13 static readonly examples: never[];
14 /**
15 * Flags.
16 */
17 static readonly flags: {
18 help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
19 };
20 /**
21 * Arguments.
22 */
23 static readonly args: {
24 name: string;
25 required: boolean;
26 description: string;
27 }[];
28 /**
29 * Handler.
30 */
31 run(): Promise<void>;
32}