# Primitive

`type` in `plugin-kysely-postgres` · v0.2.1

<https://docs.seedcord.org/packages/plugin-kysely-postgres/0.2.1/types/primitive>

Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive).

 Type

## Declaration

```ts
type Primitive =
    | null
    | undefined
    | string
    | number
    | boolean
    | symbol
    | bigint;
```
