UNPKG

@yolkai/nx-workspace

Version:

Extensible Dev Tools for Monorepos

23 lines (22 loc) 513 B
import yargs = require('yargs'); export interface YargsListArgs extends yargs.Arguments, ListArgs { } interface ListArgs { plugin?: string; } export declare const list: { command: string; describe: string; builder: (yargs: yargs.Argv) => yargs.Argv; handler: typeof listHandler; }; /** * List available plugins or capabilities within a specific plugin * * @remarks * * Must be run within an Nx workspace * */ declare function listHandler(args: YargsListArgs): Promise<void>; export {};