UNPKG

music-metadata

Version:

Music metadata parser for Node.js, supporting virtual any audio and tag format.

5 lines (4 loc) 294 B
import type { DataType } from './AsfObject.js'; export type AttributeParser = (buf: Uint8Array) => boolean | string | number | bigint | Uint8Array; export declare function getParserForAttr(i: DataType): AttributeParser; export declare function parseUnicodeAttr(uint8Array: Uint8Array): string;