6 lines
86 B
TypeScript
6 lines
86 B
TypeScript
export interface PixelImage {
|
|
width: number
|
|
height: number
|
|
pixels: Uint8Array
|
|
}
|