UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

23 lines 952 B
import { ParseError } from './ParseError'; /** * * @export * @interface CheckOplSyntaxResult */ export interface CheckOplSyntaxResult { /** * The list of syntax errors * @type {Array<ParseError>} * @memberof CheckOplSyntaxResult */ errors?: Array<ParseError>; } /** * Check if a given object implements the CheckOplSyntaxResult interface. */ export declare function instanceOfCheckOplSyntaxResult(value: object): value is CheckOplSyntaxResult; export declare function CheckOplSyntaxResultFromJSON(json: any): CheckOplSyntaxResult; export declare function CheckOplSyntaxResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckOplSyntaxResult; export declare function CheckOplSyntaxResultToJSON(json: any): CheckOplSyntaxResult; export declare function CheckOplSyntaxResultToJSONTyped(value?: CheckOplSyntaxResult | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CheckOplSyntaxResult.d.ts.map