* This can be used to add lists of things to SQL snippets. * * ### Examples * * ```ts * import type { Person } from 'type-editor' // imaginary module * * function findByNicknames(nicknames: string[]): Promise { * return db * .selectFrom('person') * .
(
array: readonly unknown[],
separator?: RawBuilder<any>,
)
| 374 | * ``` |
| 375 | */ |
| 376 | join<T = unknown>( |
| 377 | array: readonly unknown[], |
| 378 | separator?: RawBuilder<any>, |
| 379 | ): RawBuilder<T> |
no outgoing calls