@argdown/cli
Version:
A command line interface for exporting Argdown files to html, dot or json.
11 lines (10 loc) • 511 B
TypeScript
import { Arguments } from "yargs";
import { IGeneralCliOptions } from "../IGeneralCliOptions";
export declare const command = "markdown [inputGlob] [outputDir]";
export declare const desc = "export Markdown file to html while exporting all Argdown code fences as web components";
export declare const builder: {};
export interface IMarkdownCliOptions {
inputGlob?: string;
outputDir?: string;
}
export declare const handler: (args: Arguments<IGeneralCliOptions & IMarkdownCliOptions>) => Promise<void>;