Type alias HasManyHasAssociationMixin<TModel, TModelPrimaryKey>

HasManyHasAssociationMixin<TModel, TModelPrimaryKey>: ((target: TModel | TModelPrimaryKey, options?: HasManyHasAssociationMixinOptions<TModel>) => Promise<boolean>)

Type Parameters

  • TModel extends Model

  • TModelPrimaryKey

Type declaration

    • (target: TModel | TModelPrimaryKey, options?: HasManyHasAssociationMixinOptions<TModel>): Promise<boolean>
    • The hasAssociation mixin applied to models with hasMany. An example of usage is as follows:

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

      User.hasMany(Role);

      See

      Model.hasMany

      Parameters

      Returns Promise<boolean>

Generated using TypeDoc