# Primitive

## `Primitive`

All primitives types.

{% code title="primitive.type.ts" %}

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

{% endcode %}
