link-type-definitions
Version:
link type definitions
11 lines (10 loc) • 336 B
TypeScript
import Parser from '@oclif/parser';
import { Command } from '@oclif/command';
import { Input } from '@oclif/command/lib/flags';
export default class LinkCommand extends Command {
static description: string;
static examples: string[];
static flags: Input<any>;
static args: Parser.args.Input;
run(): Promise<void>;
}