UNPKG

create-oclif

Version:

oclif: create your own CLI

10 lines (9 loc) 254 B
import { Command, flags } from '@oclif/command'; export default class UploadDeb extends Command { static hidden: boolean; static description: string; static flags: { root: flags.IOptionFlag<string>; }; run(): Promise<void>; }