@coolio/auth-interceptor
Version:
Authentication interceptor for Coolio
15 lines • 484 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var InMemoryAuthStorage = (function () {
function InMemoryAuthStorage() {
}
InMemoryAuthStorage.prototype.getData = function () {
return this.data;
};
InMemoryAuthStorage.prototype.setData = function (data) {
this.data = data;
};
return InMemoryAuthStorage;
}());
exports.InMemoryAuthStorage = InMemoryAuthStorage;
//# sourceMappingURL=inMemory.authStorage.js.map