rdme
Version:
ReadMe's official CLI and GitHub Action.
23 lines (22 loc) • 947 B
TypeScript
import type { FullExportResults } from '../../lib/exportDocs.js';
import BaseCommand from '../../lib/baseCommand.js';
export default class ReferenceExportCommand extends BaseCommand<typeof ReferenceExportCommand> {
id: "reference export";
route: "reference";
static section: "Reference";
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>;
}