UNPKG

oclif

Version:

oclif: create your own CLI

11 lines (10 loc) 251 B
import { Command } from '@oclif/core'; export default class Manifest extends Command { static description: string; static args: { name: string; description: string; default: string; }[]; run(): Promise<void>; }