UNPKG

link-type-definitions

Version:
11 lines (10 loc) 336 B
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>; }