type alias EposImageHelpers.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 EposImageHelpers } from ".";
type { EposImageData } = EposImageHelpers;