type alias EposImageData

A minimal form of the DOM's ImageData.

Definition

ImageData
| { readonly width: number; readonly height: number; readonly data: ImageDataArray | Uint8Array; }
| { width: number; height: number; data: ImageDataArray | Uint8Array; }

Usage

import { type EposImageData } from "image-helpers";