UNPKG

oclif

Version:

oclif: create your own CLI

10 lines (9 loc) 294 B
import { Command, Interfaces } from '@oclif/core'; export default class UploadMacos extends Command { static description: string; static flags: { root: Interfaces.OptionFlag<string>; targets: Interfaces.OptionFlag<string | undefined>; }; run(): Promise<void>; }