Executing Documentation Generation
generation.generateDocumentation(
Object data, // the parsed JSON data response received from the serializer
Fn successCallback, // callback to be executed on successful generation
Fn errorCallback, // callback to be executed on generation error
);generation.generateDocumentation(
data,
function (targetArchiveFilePath, targetArchiveFileName, targetFolderPath, targetHtmlDocFolderPath, targetMdjFilePath) {
...your logic to run on success...
},
function (error) {
...your logic to run on error...
}
);Last updated