Type Alias HasManyRemoveAssociationMixin<T, TModelPrimaryKey>

HasManyRemoveAssociationMixin: (
    oldAssociated?: T | TModelPrimaryKey,
    options?: HasManyRemoveAssociationMixinOptions<T>,
) => Promise<void>

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

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

User.hasMany(Role);

Type Parameters

  • T extends Model
  • TModelPrimaryKey

Type declaration

Model.hasMany