UNPKG

taglib-wasm

Version:

TagLib for TypeScript platforms: Deno, Node.js, Bun, Electron, browsers, and Cloudflare Workers

11 lines 613 B
/** * @fileoverview TagLib WebAssembly TypeScript bindings * Universal audio metadata handling for Deno, Node.js, and browsers */ export { AudioFileImpl, createTagLib, TagLib } from "./taglib.ts"; export type { AudioFile, Tag } from "./taglib.ts"; export type { AudioProperties, FileType, PropertyMap, Tag as BasicTag, } from "./types.ts"; export type { TagLibModule } from "./wasm.ts"; export { getGlobalWorkerPool, TagLibWorkerPool, terminateGlobalWorkerPool, } from "./worker-pool.ts"; export type { BatchOperation, WorkerPoolOptions, WorkerTask, } from "./worker-pool.ts"; //# sourceMappingURL=mod.d.ts.map