@akveo/nga-auth
Version:
@akveo/nga-auth
10 lines (9 loc) • 328 B
TypeScript
import { InjectionToken } from '@angular/core';
export interface NgaAuthOptions {
providers?: any;
}
export interface NgaAuthProviders {
[key: string]: any;
}
export declare const ngaAuthOptionsToken: InjectionToken<NgaAuthOptions>;
export declare const ngaAuthProvidersToken: InjectionToken<NgaAuthProviders>;