import Interface from 'es6-interface' import https from 'https' import ActionInterface from './actionInterface.js' /** * * * * */ class Action extends Interface(ActionInterface) { /** * * @param {[type]} data * @param {[type]} source */ constructor(source, data, options) { super() this.source = source this.data = data this.options = options } } export default Action