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

12 lines (11 loc) 268 B
import { Options } from "yargs"; export interface ProjectArguments { mpk: string; projectid: string; revision: number; branch: string; workingcopyid: string; } export declare const projectOptions: { [key in keyof ProjectArguments]: Options; };