@leancodepl/kratos
Version:
Headless React components library for building Ory Kratos authentication flows
29 lines • 1.31 kB
TypeScript
import { ErrorGeneric } from './ErrorGeneric';
/**
*
* @export
* @interface ErrorBrowserLocationChangeRequired
*/
export interface ErrorBrowserLocationChangeRequired {
/**
*
* @type {ErrorGeneric}
* @memberof ErrorBrowserLocationChangeRequired
*/
error?: ErrorGeneric;
/**
* Points to where to redirect the user to next.
* @type {string}
* @memberof ErrorBrowserLocationChangeRequired
*/
redirect_browser_to?: string;
}
/**
* Check if a given object implements the ErrorBrowserLocationChangeRequired interface.
*/
export declare function instanceOfErrorBrowserLocationChangeRequired(value: object): value is ErrorBrowserLocationChangeRequired;
export declare function ErrorBrowserLocationChangeRequiredFromJSON(json: any): ErrorBrowserLocationChangeRequired;
export declare function ErrorBrowserLocationChangeRequiredFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorBrowserLocationChangeRequired;
export declare function ErrorBrowserLocationChangeRequiredToJSON(json: any): ErrorBrowserLocationChangeRequired;
export declare function ErrorBrowserLocationChangeRequiredToJSONTyped(value?: ErrorBrowserLocationChangeRequired | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=ErrorBrowserLocationChangeRequired.d.ts.map