Type alias HasManyHasAssociationsMixin<TModel, TModelPrimaryKey>

HasManyHasAssociationsMixin<TModel, TModelPrimaryKey>: ((targets, options?) => Promise<boolean>)

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

class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
declare hasRoles: HasManyHasAssociationsMixin<Role, Role['id']>;
}

User.hasMany(Role);

Type Parameters

  • TModel extends Model
  • TModelPrimaryKey

Type declaration

See

Model.hasMany