(table: unknown)
| 118 | } |
| 119 | |
| 120 | export function isTable(table: unknown): table is Table { |
| 121 | return typeof table === 'object' && table !== null && IsDrizzleTable in table; |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Any table with a specified boundary. |
no outgoing calls
no test coverage detected