rdme
Version:
ReadMe's official CLI and GitHub Action.
11 lines (10 loc) • 377 B
TypeScript
import BaseCommand from './lib/baseCommand.js';
import readdirRecursive from './lib/readdirRecursive.js';
export { BaseCommand };
export { handleAPIv2Res, readmeAPIv2Fetch } from './lib/readmeAPIFetch.js';
export { readdirRecursive };
/**
* Type guard to check that a given value is a record.
*
*/
export declare function isRecord(v: unknown): v is Record<string, unknown>;