UNPKG

taglib-wasm

Version:

TagLib-Wasm is the universal tagging library for TypeScript/JavaScript platforms: Browsers, Node.js, Deno, Bun, Cloudflare Workers, and Electron apps

9 lines 399 B
/** * @fileoverview Node.js/Bun filesystem provider for WASI host * * Uses node:fs with manual position tracking since Node lacks seekSync. * Bun implements node:fs faithfully, so this provider covers both. */ import type { FileSystemProvider } from "./wasi-fs-provider.js"; export declare function createNodeFsProvider(): Promise<FileSystemProvider>; //# sourceMappingURL=wasi-fs-node.d.ts.map