UNPKG

1.16 kBJavaScriptView Raw
1var __extends = (this && this.__extends) || (function () {
2 var extendStatics = Object.setPrototypeOf ||
3 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5 return function (d, b) {
6 extendStatics(d, b);
7 function __() { this.constructor = d; }
8 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9 };
10})();
11import { Injectable } from '@angular/core';
12import { STORAGE } from '../enums/storage';
13import { WebStorageService } from './webStorage';
14var SessionStorageService = (function (_super) {
15 __extends(SessionStorageService, _super);
16 function SessionStorageService() {
17 return _super.call(this, STORAGE.session) || this;
18 }
19 SessionStorageService.decorators = [
20 { type: Injectable },
21 ];
22 /** @nocollapse */
23 SessionStorageService.ctorParameters = function () { return []; };
24 return SessionStorageService;
25}(WebStorageService));
26export { SessionStorageService };
27//# sourceMappingURL=sessionStorage.js.map
\No newline at end of file