UNPKG

angular-auth-oidc-client

Version:
21 lines (20 loc) 528 B
import { FlowType } from '../schema'; export interface ModuleInfo { moduleFileName: string; moduleName: string; filesFolder: string; } export interface StandaloneInfo { fileName: string; configName: string; filesFolder: string; } export interface NgAddOptions { authorityUrlOrTenantId: string; flowType: FlowType; isHttpOption: boolean; needsSilentRenewHtml: boolean; moduleInfo: ModuleInfo | undefined; standaloneInfo: StandaloneInfo | undefined; useLocalPackage: boolean; }