UNPKG

419 BTypeScriptView Raw
1import { Observable } from 'rxjs';
2import * as i0 from "@angular/core";
3export declare abstract class RefreshTokenService {
4 /**
5 * Try to authenticate with refresh token and return if auth succeed
6 */
7 abstract tryAuthWithRefreshToken(): Observable<boolean>;
8 static ɵfac: i0.ɵɵFactoryDeclaration<RefreshTokenService, never>;
9 static ɵprov: i0.ɵɵInjectableDeclaration<RefreshTokenService>;
10}