(cause: unknown, message: string, operation: string)
| 34 | const MAX_BUSY_TIMEOUT = 2_147_483_647 |
| 35 | |
| 36 | const classifyError = (cause: unknown, message: string, operation: string) => |
| 37 | classifySqliteError(cause, { message, operation }) |
| 38 | |
| 39 | /** |
| 40 | * Runtime type identifier used to mark Bun `SqliteClient` values. |
no test coverage detected