/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { ImageChannels } from "./imageTypes"; /** Internal pixel-buffer shape used by CPU filter ops and codec helpers. */ export interface RawPixelBuffer { data: Uint8ClampedArray; width: number; height: number; channels: ImageChannels; rawChannels?: number | undefined; } /** RGBA-only variant. */ export type RgbaPixelBuffer = Readonly & { readonly channels: 4; }>; //# sourceMappingURL=rawPixelBuffer.d.ts.map