UNPKG

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

14 lines (13 loc) 708 B
import { Arguments, CommandBuilder } from "yargs"; import { OutputArguments } from "../options/output"; import { ClientArguments } from "../options/client"; import { TemplateArguments } from "../options/templates"; import { ProjectArguments } from "../options/project"; import { FilterArguments } from "../options/filters"; interface GenerateCommandArguments extends Arguments, ClientArguments, ProjectArguments, FilterArguments, TemplateArguments, OutputArguments { } export declare const command = "generate"; export declare const describe = "Generate documentation"; export declare const builder: CommandBuilder; export declare const handler: (args: GenerateCommandArguments) => Promise<void>; export {};