fast-png-fork-ste
Version:
PNG image decoder and encoder written entirely in JavaScript
12 lines (11 loc) • 376 B
TypeScript
import { IExternalBuffer } from '../IExternalBuffer';
import { PngDataArray } from '../types';
interface DecodeInterlaceNullParams {
data: Uint8Array;
width: number;
height: number;
channels: number;
depth: number;
}
export declare function decodeInterlaceNull(params: DecodeInterlaceNullParams, externalBuffer?: IExternalBuffer): PngDataArray;
export {};