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.

8 lines (7 loc) 293 B
import { type ProgramInfo } from './index'; /** * Converts am unstructured help string emitted from a CLI tool built with the * `Yargs` CLI library and turn it into a structured POJO describing the * command. */ export declare function helpStringToObject(helpString: string): ProgramInfo;