mxdocgen
Version:
A small tool that mimics the documentation generation capabilities offered in Mendix Studio Pro, but with greater flexibility. It uses the Mendix Model SDK to extract information from a Mendix model, which is then fed into a set of templates to generate
10 lines (9 loc) • 424 B
TypeScript
import { Arguments, CommandBuilder } from "yargs";
interface CopyTemplatesCommandArguments extends Arguments {
target: string;
}
export declare const command = "copy-templates <target>";
export declare const describe = "Copy the default templates to another location for modification";
export declare const builder: CommandBuilder;
export declare const handler: (args: CopyTemplatesCommandArguments) => void;
export {};