@argdown/cli
Version:
A command line interface for exporting Argdown files to html, dot or json.
9 lines (8 loc) • 385 B
TypeScript
import { Arguments } from "yargs";
import { IGeneralCliOptions } from "../IGeneralCliOptions";
export declare const command = "run [process]";
export declare const desc = "run a process you have defined in your config file";
export interface IRunCliOptions {
process: string;
}
export declare const handler: (args: Arguments<IGeneralCliOptions & IRunCliOptions>) => Promise<void>;