@attus/ionic-storage
v1.2.1
Published
Ionic Storage Service
Downloads
14
Readme
Ionic Storage
Cache and Token Service for Ionic-Angular
Usage in Service:
constructor(private tokenService: IonicTokenService)
this.tokenService.getRefreshToken().then(token => {});
this.tokenService.setRefreshToken(tokenString);
this.tokenService.deleteRefreshToken();
constructor(private cacheService: IonicCacheService)
this.cacheService.set(key, value, expire);
this.cacheService.get(key).then(value => {});