// esbuild's `binary` loader resolves a `.wasm` import to a Uint8Array of // the file's raw bytes. tsc doesn't know about that loader, so without // this declaration it errors "Cannot find module 'sql.js/dist/sql-wasm.wasm'". declare module "*.wasm" { const bytes: Uint8Array; export default bytes; }