7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
declare class Avc {
|
|
public onPictureDecoded: (buffer: Uint8Array, width: number, height: number) => void;
|
|
public decode(data: Uint8Array): void;
|
|
}
|
|
|
|
export = Avc;
|