cocori-ng
Version:
Cocori-ng is an Angular full of great components & utilites based on Material
15 lines (14 loc) • 541 B
TypeScript
import { StorageService } from './storage.service';
import * as i0 from "@angular/core";
export declare class TokenService {
private storageService;
constructor(storageService: StorageService);
get accessToken(): string;
set accessToken(token: string);
get refreshToken(): string;
set refreshToken(token: string);
deleteTokens(): void;
decryptAccessToken<T>(): T;
static ɵfac: i0.ɵɵFactoryDeclaration<TokenService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<TokenService>;
}