state-switch
Version:
State Switch is a Change Monitor/Guarder for Async Actions.
15 lines • 414 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ServiceableAbstract = void 0;
class ServiceableAbstract {
constructor(..._) { }
/**
* start/stop is optional:
* if they exists, then they will be called
*/
start(..._) { }
stop(..._) { }
emit(..._) { }
}
exports.ServiceableAbstract = ServiceableAbstract;
//# sourceMappingURL=interfaces.js.map