ng2-idle-core
Version:
ng-idle for Angular 2+ core module
20 lines • 544 B
JavaScript
/*
* A class for expressing arguments to interrupt events.
*/
var /*
* A class for expressing arguments to interrupt events.
*/
InterruptArgs = /** @class */ (function () {
function InterruptArgs(source, innerArgs, force) {
if (force === void 0) { force = false; }
this.source = source;
this.innerArgs = innerArgs;
this.force = force;
}
return InterruptArgs;
}());
/*
* A class for expressing arguments to interrupt events.
*/
export { InterruptArgs };
//# sourceMappingURL=interruptargs.js.map