# Types

## `Types<Obj>`

The **main** types as string values, besides the [`Constructor`](https://type.angular-package.dev/type-draft/type/constructor) which is an instance of an [`Obj`](#obj).

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

```typescript
type Types<Obj> = Constructor<Obj> | 'function' | 'object' | Primitives;
```

{% endcode %}

{% embed url="<https://github.com/angular-package/type/blob/main/src/type/types.type.ts>" %}

### Generic type variables

#### `Obj`

Generic type variable `Obj` indicates an instance of the generic type [`Constructor`](https://type.angular-package.dev/type-draft/type/constructor).
