@argdown/cli
Version:
A command line interface for exporting Argdown files to html, dot or json.
8 lines (7 loc) • 322 B
TypeScript
import { Arguments } from "yargs";
import { IGeneralCliOptions } from "../IGeneralCliOptions";
export declare const command = "* [inputGlob]";
export declare const desc = "load config file and run parser";
export declare const handler: (args: Arguments<IGeneralCliOptions> & {
inputGlob?: string;
}) => Promise<void>;