@oclif/dev-cli
Version:
helpers for oclif CLIs
12 lines (11 loc) • 359 B
TypeScript
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>;
}