# Primitive

`type` in `plugins` · v0.8.0-next.8

<https://docs.seedcord.org/packages/plugins/0.8.0-next.8/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;
```
