Skip to content

OidcInteractionPromptProps

@tsed/oidc-provider

Usage

typescript
import { OidcInteractionPromptProps } from "@tsed/security/oidc-provider/src/types/domain/OidcInteractionPromptProps";

See /packages/security/oidc-provider/src/types/domain/OidcInteractionPromptProps.ts.

Overview

ts
type OidcInteractionPromptProps<Props = Record<string, any>> = {
    client: OidcClient;
    uid: string;
    grantId: string;
    details: UnknownObject;
    params: Record<string, any>;
} & Props;

client

ts
client: OidcClient;

uid

ts
uid: string;

grantId

ts
grantId: string;

details

ts
details: UnknownObject;

params

ts
params: Record<string, any>;

Released under the MIT License.