Files
verify/frontend/node_modules/fast-png/lib/helpers/decodeInterlaceAdam7.d.ts
Mohamed Mathar Irfan ed6610d5d8 Initial project upload
2026-07-28 17:57:02 +05:30

9 lines
338 B
TypeScript

import type { DecodeInterlaceNullParams } from './decodeInterlaceNull';
/**
* Decodes the Adam7 interlaced PNG data.
*
* @param params - DecodeInterlaceNullParams
* @returns - array of pixel data.
*/
export declare function decodeInterlaceAdam7(params: DecodeInterlaceNullParams): Uint8Array<ArrayBuffer> | Uint16Array<ArrayBuffer>;