# Primitives

## `Primitives`

All primitives types as [`string`](https://www.typescriptlang.org/docs/handbook/basic-types.html#string).

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

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

{% endcode %}
