UNPKG

mdat

Version:

CLI tool and TypeScript library implementing the Markdown Autophagic Template (MDAT) system. MDAT lets you use comments as dynamic content templates in Markdown files, making it easy to generate and update readme boilerplate.

12 lines (11 loc) 427 B
import { type Simplify } from 'type-fest'; import { type ConfigLoaded, loadConfig } from '../config'; type ReadmeConfigLoaded = Simplify<ConfigLoaded & { packageFile: string; }>; type LoadConfigOptions = Parameters<typeof loadConfig>[0]; /** * Convenience loader to always include the default readme config */ export declare function loadConfigReadme(options?: LoadConfigOptions): Promise<ReadmeConfigLoaded>; export {};