(
table: string | Expression | Query,
condition: string,
alias?: string
)
| 306 | } |
| 307 | |
| 308 | leftJoin( |
| 309 | table: string | Expression | Query, |
| 310 | condition: string, |
| 311 | alias?: string |
| 312 | ): this { |
| 313 | return this.joinWithType('LEFT', table, condition, alias); |
| 314 | } |
| 315 | |
| 316 | leftAnyJoin( |
| 317 | table: string | Expression | Query, |
no test coverage detected