UNPKG

json-api-schema

Version:

JSON Api Schema is a JSON dialect that can describe any Web Based API that uses JSON to exchange data.

17 lines (10 loc) 283 B
Interaction = require './interaction' class Action extends Interaction @entity("Action") @accessors "name", "params", "returns", ["get", "set"] @children "params", "returns" constructor: (options) -> super(options) module.exports = Action