Type Alias ForeignKeyProperties<T>

ForeignKeyProperties: {
    [P in Exclude<keyof T, ExcludeKeys>]: T[P] extends ForeignKey
        ? string
        : never
}

ForeignKey properties of the join table

Type Parameters

  • T