Type Alias HasManyCountAssociationsMixin<T>

HasManyCountAssociationsMixin: (
    options?: HasManyCountAssociationsMixinOptions<T>,
) => Promise<number>

The countAssociations mixin applied to models with hasMany. An example of usage is as follows:

class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
declare countRoles: HasManyCountAssociationsMixin<Role>;
}

User.hasMany(Role);

Type Parameters

Type declaration

Model.hasMany