@digitalpersona/core
Version:
DigitalPersona Web Access Core library
16 lines (10 loc) • 497 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@digitalpersona/core](./core.md) > [ClaimNames](./core.claimnames.md)
## ClaimNames type
Alias type representing all claim names, as if `type ClaimNames = "jti" | "iss" | "iat" | "aud" | ... | "wan" | "t24";`
<b>Signature:</b>
```typescript
export declare type ClaimNames = {
[K in keyof ClaimSet]: ClaimSet[K] extends Function ? never : K;
}[keyof ClaimSet];
```