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.
11 lines (10 loc) • 589 B
TypeScript
import { type ConfigResult as AmbientRemarkConfig } from 'unified-engine';
export { type ConfigResult as AmbientRemarkConfig } from 'unified-engine';
export declare function getInputOutputPaths(inputs: string[], output: string | undefined, name: string | undefined, extension: string | undefined): Array<{
input: string;
name: string;
output: string;
}>;
export declare function findPackage(): Promise<string | undefined>;
export declare function ensureArray<T>(value: T | T[] | undefined): T[];
export declare function loadAmbientRemarkConfig(): Promise<AmbientRemarkConfig>;