Type alias HasManyCreateAssociationMixin<Target, ExcludedAttributes>

HasManyCreateAssociationMixin<Target, ExcludedAttributes>: ((values?, options?) => Promise<Target>)

Type Parameters

Type declaration

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

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

      User.hasMany(Role);

      Parameters

      Returns Promise<Target>

      See

      Model.hasMany

Generated using TypeDoc