(cause: unknown, message: string, operation: string)
| 20 | import type { OpfsWorkerMessage } from "./internal/opfsWorker.ts" |
| 21 | |
| 22 | const classifyError = (cause: unknown, message: string, operation: string) => |
| 23 | classifySqliteError(cause, { message, operation }) |
| 24 | |
| 25 | /** |
| 26 | * Configuration for the SQLite OPFS worker, including the message port used for the client protocol and the OPFS database name to open. |
no test coverage detected