13 lines
287 B
TypeScript
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;
|
|
};
|
|
}
|