@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
13 lines • 373 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.example = example;
/**
* Decorator to describe api examples
*/
function example(options) {
return (target, propertyKey, descriptor) => {
target.examples = target.examples || {};
target.examples[propertyKey] = options;
};
}
//# sourceMappingURL=IApiExample.js.map
;