UNPKG

rdme

Version:

ReadMe's official CLI and GitHub Action.

23 lines (22 loc) 926 B
import type { FullExportResults } from '../../lib/exportDocs.js'; import BaseCommand from '../../lib/baseCommand.js'; export default class DocsExportCommand extends BaseCommand<typeof DocsExportCommand> { id: "docs export"; route: "guides"; static section: "Guides"; static summary: string; static description: string; static args: { folder: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>; }; static flags: { 'docs-only'?: import("@oclif/core/interfaces").BooleanFlag<boolean> | undefined; branch: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>; key: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>; }; static examples: { description: string; command: string; }[]; run(): Promise<FullExportResults>; }