UNPKG

248 BTypeScriptView Raw
1import { Command } from '@oclif/command';
2/**
3 * List all packages
4 */
5export default class List extends Command {
6 /**
7 * description
8 */
9 static description: string;
10 /**
11 * implementation
12 */
13 run(): Promise<void>;
14}