<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@digitalpersona/core](./core.md) &gt; [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];
```
