Type alias HasManyGetAssociationsMixin<T>

HasManyGetAssociationsMixin<T>: ((options?) => Promise<T[]>)

Type Parameters

Type declaration

    • (options?): Promise<T[]>
    • The getAssociations mixin applied to models with hasMany. An example of usage is as follows:

      class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
      declare getRoles: HasManyGetAssociationsMixin<Role>;
      }

      User.hasMany(Role);

      Parameters

      Returns Promise<T[]>

      See

      Model.hasMany

Generated using TypeDoc