Source: types.js

/**
 * @module types
 */

/**
 * PubSub event type of using
 * @typedef {String} module:types.OccurrenceType
 */

/**
 * Supported PuSub method
 * @type {module:types.OccurrenceType[]}
 */
module.exports = [
    "subscribe",
    "publish"
];