(buf: Uint8Array, offset: number)
| 2 | export class ImageDecoder { |
| 3 | |
| 4 | static readUInt16LE(buf: Uint8Array, offset: number): number { |
| 5 | return buf[offset] | (buf[offset + 1] << 8); |
| 6 | } |
| 7 | |
| 8 | static readUInt32LE(buf: Uint8Array, offset: number): number { |
| 9 | return ( |