securityos/node_modules/music-metadata/lib/ogg/vorbis/VorbisDecoder.d.ts

13 lines
287 B
TypeScript

export declare class VorbisDecoder {
private readonly data;
private offset;
constructor(data: Uint8Array, offset: any);
readInt32(): number;
readStringUtf8(): string;
parseUserComment(): {
key: string;
value: string;
len: number;
};
}