UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

29 lines 1.19 kB
import { JsonWebKey } from './JsonWebKey'; /** * JSON Web Key Set * @export * @interface JsonWebKeySet */ export interface JsonWebKeySet { /** * List of JSON Web Keys * * The value of the "keys" parameter is an array of JSON Web Key (JWK) * values. By default, the order of the JWK values within the array does * not imply an order of preference among them, although applications * of JWK Sets can choose to assign a meaning to the order for their * purposes, if desired. * @type {Array<JsonWebKey>} * @memberof JsonWebKeySet */ keys?: Array<JsonWebKey>; } /** * Check if a given object implements the JsonWebKeySet interface. */ export declare function instanceOfJsonWebKeySet(value: object): value is JsonWebKeySet; export declare function JsonWebKeySetFromJSON(json: any): JsonWebKeySet; export declare function JsonWebKeySetFromJSONTyped(json: any, ignoreDiscriminator: boolean): JsonWebKeySet; export declare function JsonWebKeySetToJSON(json: any): JsonWebKeySet; export declare function JsonWebKeySetToJSONTyped(value?: JsonWebKeySet | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JsonWebKeySet.d.ts.map