Type alias BelongsToManyCreateAssociationMixin<T>

BelongsToManyCreateAssociationMixin<T>: ((values?, options?) => Promise<T>)

Type Parameters

Type declaration

    • (values?, options?): Promise<T>
    • The createAssociation mixin applied to models with belongsToMany. An example of usage is as follows:

      class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
      declare createRole: BelongsToManyCreateAssociationMixin<Role>;
      }

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

      Parameters

      Returns Promise<T>

      See

      Model.belongsToMany

Generated using TypeDoc