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