9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
import { Command } from '@oclif/core';
|
|
export default class Prerelease extends Command {
|
|
static description: string;
|
|
static examples: string[];
|
|
static flags: {};
|
|
static hidden: boolean;
|
|
run(): Promise<void>;
|
|
}
|