# JsonPrimitive

`type` in `utils` · v0.7.0

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

Matches any valid JSON primitive value.

 JSON

## Declaration

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