UNPKG

angular-auth-oidc-client

Version:
12 lines (11 loc) 386 B
import { OpenIdConfiguration } from '../openid-configuration'; export interface Rule { validate(passedConfig: OpenIdConfiguration): RuleValidationResult; } export interface RuleValidationResult { result: boolean; messages: string[]; level: Level; } export declare const POSITIVE_VALIDATION_RESULT: RuleValidationResult; export type Level = 'warning' | 'error' | 'none';