# IModelClass type · @imqueue/pg-sequelize

Source: https://imqueue.org/api/pg-sequelize/latest/pg-sequelize.imodelclass/
Published: 2026-08-01
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/pg-sequelize 4.2.0 — generated reference, not hand-written

Names a model class by the instance type it produces.

**Signature:**

```typescript
export type IModelClass<T extends BaseModel<T>> = new () => T;
```
**References:** [BaseModel](https://imqueue.org/api/pg-sequelize/latest/pg-sequelize.basemodel/)

## Remarks

Used where a helper takes a model class rather than an instance. The constructor is declared without arguments because the type is there to identify a class, not to build anything with it — sequelize instantiates models itself.

