
Updated to use new libdeflate integration that I implemented upstream in https://github.com/shssoichiro/oxipng/pull/203.
9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* @param {Uint8Array} data
|
|
* @param {number} level
|
|
* @returns {Uint8Array}
|
|
*/
|
|
export function optimise(data: Uint8Array, level: number): Uint8Array;
|