Skip to content

Type Alias: RelationshipCtor

ts
type RelationshipCtor =
  | typeof BelongsTo
  | typeof HasMany
  | typeof HasManyThrough
  | typeof HasOne
  | typeof ManyToMany
  | typeof MorphTo
  | typeof MorphOne
  | typeof MorphMany;

Describes the constructor for a class which defines a relationship between models.