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

6 lines (5 loc) 184 B
import { IModel } from "mendixmodelsdk"; import { TemplateData } from "./templates"; export interface Processor<T extends TemplateData> { process: (model: IModel) => Promise<T>; }