UNPKG

@oclif/plugin-which

Version:

find which plugin a command is in

17 lines (16 loc) 378 B
import { Command } from '@oclif/core'; type WhichResult = { aliasOf?: string; plugin: string; }; export default class Which extends Command { static description: string; static enableJsonFlag: boolean; static examples: { command: string; description: string; }[]; static strict: boolean; run(): Promise<WhichResult>; } export {};