# JsonPrimitive

`type` in `utils` · v0.6.1

<https://docs.seedcord.org/packages/utils/0.6.1/types/json-primitive>

Matches any valid JSON primitive value.

 JSON

## Declaration

```ts
type JsonPrimitive =
    | string
    | number
    | boolean
    | null;
```
