Type alias BelongsToManyGetAssociationsMixin<T>

BelongsToManyGetAssociationsMixin<T>: ((options?) => Promise<T[]>)

The getAssociations mixin applied to models with belongsToMany. An example of usage is as follows:

class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
declare getRoles: BelongsToManyGetAssociationsMixin<Role>;
}

User.belongsToMany(Role, { through: UserRole });

Type Parameters

Type declaration

See

Model.belongsToMany