Type alias ForeignKeyProperties<T>

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

ForeignKey properties of the join table

Type Parameters

  • T

Generated using TypeDoc