Type alias BelongsToManyAddAssociationMixin<T, TModelPrimaryKey>

BelongsToManyAddAssociationMixin<T, TModelPrimaryKey>: ((newAssociation?: T | TModelPrimaryKey, options?: BelongsToManyAddAssociationMixinOptions<T>) => Promise<void>)

Type Parameters

  • T extends Model

  • TModelPrimaryKey

Type declaration

    • (newAssociation?: T | TModelPrimaryKey, options?: BelongsToManyAddAssociationMixinOptions<T>): Promise<void>
    • The addAssociation mixin applied to models with belongsToMany. An example of usage is as follows:

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

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

      See

      Model.belongsToMany

      Parameters

      Returns Promise<void>

Generated using TypeDoc