Type alias BelongsToManyOptions<TCreationAttributesThrough, TModelAttributesThrough>

BelongsToManyOptions<TCreationAttributesThrough, TModelAttributesThrough>: {
    [K in keyof OriginBelongsToManyOptions]: K extends "through"
        ? ModelClassGetter<TCreationAttributesThrough, TModelAttributesThrough> | string | ThroughOptions<TCreationAttributesThrough, TModelAttributesThrough>
        : OriginBelongsToManyOptions[K]
}

Type Parameters

  • TCreationAttributesThrough extends {}

  • TModelAttributesThrough extends {}

Generated using TypeDoc