UNPKG

457 BJavaScriptView Raw
1// Same as @apiParam
2var apiParser = require('./api_param.js');
3
4function parse(content, source) {
5 return apiParser.parse(content, source, 'Success 200');
6}
7
8function path() {
9 return 'local.success.fields.' + apiParser.getGroup();
10}
11
12/**
13 * Exports
14 */
15module.exports = {
16 parse : parse,
17 path : path,
18 method : apiParser.method,
19 markdownFields: [ 'description', 'type' ],
20 markdownRemovePTags: [ 'type' ]
21};