@cristiand391/oclif-carapace-spec-plugin
Version:
oclif plugin to generate a carapace spec
12 lines (11 loc) • 328 B
TypeScript
import { Command, Interfaces } from '@oclif/core';
export default class CarapaceGen extends Command {
static description: string;
static flags: {
'refresh-cache': Interfaces.BooleanFlag<boolean>;
};
run(): Promise<void>;
private getCommandNodes;
private getTopics;
private sanitizeSummary;
}