You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
448 B

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