/** * Main entry point for web-csv-toolbox with auto-initialization (Browser/Web version). * * This version includes base64-inlined WASM for automatic initialization. * * **Architecture:** * - Common exports are in `main.shared.ts` * - This file only contains Web-specific exports * - Build-time resolution: Vite plugin resolves `#/wasm/loaders/*` imports based on entry file name * - WASM loader selection: `.web.ts` → uses `loadWASM.web.ts` (Uint8Array.fromBase64 + fetch) * * @packageDocumentation */ /** biome-ignore-all assist/source/organizeImports: For sort by category */ export * from './main.shared'; export * from './parser/api/string/parseStringToArraySyncWASM.main.web'; export * from './wasm/WasmInstance.main.web'; export * from './worker/helpers/ReusableWorkerPool.web';