UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

29 lines 1.47 kB
import { GenericError } from './GenericError'; /** * * @export * @interface ErrorAuthenticatorAssuranceLevelNotSatisfied */ export interface ErrorAuthenticatorAssuranceLevelNotSatisfied { /** * * @type {GenericError} * @memberof ErrorAuthenticatorAssuranceLevelNotSatisfied */ error?: GenericError; /** * Points to where to redirect the user to next. * @type {string} * @memberof ErrorAuthenticatorAssuranceLevelNotSatisfied */ redirect_browser_to?: string; } /** * Check if a given object implements the ErrorAuthenticatorAssuranceLevelNotSatisfied interface. */ export declare function instanceOfErrorAuthenticatorAssuranceLevelNotSatisfied(value: object): value is ErrorAuthenticatorAssuranceLevelNotSatisfied; export declare function ErrorAuthenticatorAssuranceLevelNotSatisfiedFromJSON(json: any): ErrorAuthenticatorAssuranceLevelNotSatisfied; export declare function ErrorAuthenticatorAssuranceLevelNotSatisfiedFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorAuthenticatorAssuranceLevelNotSatisfied; export declare function ErrorAuthenticatorAssuranceLevelNotSatisfiedToJSON(json: any): ErrorAuthenticatorAssuranceLevelNotSatisfied; export declare function ErrorAuthenticatorAssuranceLevelNotSatisfiedToJSONTyped(value?: ErrorAuthenticatorAssuranceLevelNotSatisfied | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ErrorAuthenticatorAssuranceLevelNotSatisfied.d.ts.map