angular-auth-oidc-client
Version:
Angular Lib for OpenID Connect & OAuth2
16 lines (15 loc) • 441 B
TypeScript
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: {
result: boolean;
messages: any[];
level: any;
};
export declare type Level = 'warning' | 'error';