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

13 lines
287 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
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;
};
}