UNPKG

create-oclif

Version:

oclif: create your own CLI

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