UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

23 lines 1.3 kB
import { IdentityWithCredentialsSamlConfigProvider } from './IdentityWithCredentialsSamlConfigProvider'; /** * Payload of SAML providers * @export * @interface IdentityWithCredentialsSamlConfig */ export interface IdentityWithCredentialsSamlConfig { /** * A list of SAML Providers * @type {Array<IdentityWithCredentialsSamlConfigProvider>} * @memberof IdentityWithCredentialsSamlConfig */ providers?: Array<IdentityWithCredentialsSamlConfigProvider>; } /** * Check if a given object implements the IdentityWithCredentialsSamlConfig interface. */ export declare function instanceOfIdentityWithCredentialsSamlConfig(value: object): value is IdentityWithCredentialsSamlConfig; export declare function IdentityWithCredentialsSamlConfigFromJSON(json: any): IdentityWithCredentialsSamlConfig; export declare function IdentityWithCredentialsSamlConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentityWithCredentialsSamlConfig; export declare function IdentityWithCredentialsSamlConfigToJSON(json: any): IdentityWithCredentialsSamlConfig; export declare function IdentityWithCredentialsSamlConfigToJSONTyped(value?: IdentityWithCredentialsSamlConfig | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=IdentityWithCredentialsSamlConfig.d.ts.map