mirror of
https://github.com/exogen/t2-model-skinner.git
synced 2026-01-19 19:24:44 +00:00
13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
declare module "pngjs/browser" {
|
|
import type { PNG as NodePNG } from "pngjs";
|
|
|
|
export class PNG extends NodePNG {
|
|
data: Uint8Array;
|
|
|
|
parse(
|
|
arrayBuffer: ArrayBuffer,
|
|
callback: (error: Error, data: PNG) => void
|
|
);
|
|
}
|
|
}
|