Type alias ThroughFunction<J>
ThroughFunction<J>: (() => { foreignKey: keyof J; joinTable: (new (...args) => J); }) Type declaration
- (): {
foreignKey: keyof J;
joinTable: (new (...args) => J);
} Returns {
foreignKey: keyof J;
joinTable: (new (...args) => J);
}
foreignKey: keyof J
joinTable: (new (...args) => J)
- new (...args): J
Returns J
Represents a function returning metadata for a join table.