listCredentials: (
input: { recipeUserId: string; userContext?: Record<string, any> },
) => Promise<
{
credentials: {
createdAt: number;
recipeUserId: string;
relyingPartyId: string;
webauthnCredentialId: string;
}[];
status: "OK";
},
> = Wrapper.listCredentials
Type declaration
- (
input: { recipeUserId: string; userContext?: Record<string, any> },
): Promise<
{
credentials: {
createdAt: number;
recipeUserId: string;
relyingPartyId: string;
webauthnCredentialId: string;
}[];
status: "OK";
},
> Parameters
- input: { recipeUserId: string; userContext?: Record<string, any> }
Returns Promise<
{
credentials: {
createdAt: number;
recipeUserId: string;
relyingPartyId: string;
webauthnCredentialId: string;
}[];
status: "OK";
},
>