@argdown/cli
Version:
A command line interface for exporting Argdown files to html, dot or json.
11 lines (10 loc) • 467 B
TypeScript
import { Arguments } from "yargs";
import { IGeneralCliOptions } from "../IGeneralCliOptions";
export declare const command = "compile [inputGlob] [outputDir]";
export declare const desc = "compile included Argdown files into main file";
export declare const builder: {};
export interface ICompileCliOptions {
inputGlob?: string;
outputDir?: string;
}
export declare const handler: (args: Arguments<IGeneralCliOptions & ICompileCliOptions>) => Promise<void>;