# Primitive

`type` in `plugins` · v0.6.1

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