UNPKG

rdme

Version:

ReadMe's official CLI and GitHub Action.

21 lines (20 loc) 757 B
import BaseCommand from '../lib/baseCommand.js'; export default class ChangelogsCommand extends BaseCommand<typeof ChangelogsCommand> { id: "changelogs"; static id: "changelogs"; static summary: string; static description: string; static args: { path: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>; }; static examples: { description: string; command: string; }[]; static flags: { key: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>; dryRun: import("@oclif/core/interfaces").BooleanFlag<boolean>; github: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; run(): Promise<string>; }