angular-auth-oidc-client
Version:
Angular Lib for OpenID Connect & OAuth2
15 lines (14 loc) • 376 B
TypeScript
import { FlowType } from '../schema';
export interface ModuleInfo {
moduleFileName: string;
moduleName: string;
moduleFolder: string;
}
export interface NgAddOptions {
authorityUrlOrTenantId: string;
flowType: FlowType;
isHttpOption: boolean;
needsSilentRenewHtml: boolean;
moduleInfo: ModuleInfo;
useLocalPackage: boolean;
}