UNPKG

angular-simple-oidc

Version:

Angular Library implementing Open Id Connect specification. Code Flow, Refresh Tokens, Session Management, Discovery Document.

13 lines (12 loc) 520 B
import { OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; import { EventsService } from 'angular-simple-oidc/events'; import { AuthService } from '../auth.service'; export declare class ExpiringTokenRefresherDaemonService implements OnDestroy { protected readonly auth: AuthService; protected readonly events: EventsService; protected readonly destroyedSubject: Subject<unknown>; constructor(auth: AuthService, events: EventsService); startDaemon(): void; ngOnDestroy(): void; }