json-api-schema
Version:
JSON Api Schema is a JSON dialect that can describe any Web Based API that uses JSON to exchange data.
25 lines (15 loc) • 701 B
JavaScript
var Event, Interaction,
__hasProp = {}.hasOwnProperty,
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
Interaction = require('./interaction');
Event = (function(_super) {
__extends(Event, _super);
Event.entity("Event");
Event.accessors("name", "params", ["get", "set"]);
Event.children("params");
function Event(options) {
Event.__super__.constructor.call(this, options);
}
return Event;
})(Interaction);
module.exports = Event;