UNPKG

@oclif/dev-cli

Version:
12 lines (11 loc) 359 B
import { Command, flags } from '@oclif/command'; import * as Tarballs from '../../tarballs'; export default class Publish extends Command { static description: string; static flags: { root: flags.IOptionFlag<string>; targets: flags.IOptionFlag<string | undefined>; }; buildConfig: Tarballs.IConfig; run(): Promise<void>; }