UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

23 lines 1.19 kB
import { CheckPermissionResultWithError } from './CheckPermissionResultWithError'; /** * Batch Check Permission Result * @export * @interface BatchCheckPermissionResult */ export interface BatchCheckPermissionResult { /** * An array of check results. The order aligns with the input order. * @type {Array<CheckPermissionResultWithError>} * @memberof BatchCheckPermissionResult */ results: Array<CheckPermissionResultWithError>; } /** * Check if a given object implements the BatchCheckPermissionResult interface. */ export declare function instanceOfBatchCheckPermissionResult(value: object): value is BatchCheckPermissionResult; export declare function BatchCheckPermissionResultFromJSON(json: any): BatchCheckPermissionResult; export declare function BatchCheckPermissionResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchCheckPermissionResult; export declare function BatchCheckPermissionResultToJSON(json: any): BatchCheckPermissionResult; export declare function BatchCheckPermissionResultToJSONTyped(value?: BatchCheckPermissionResult | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BatchCheckPermissionResult.d.ts.map