mirror of
https://github.com/exogen/t2-model-skinner.git
synced 2026-04-29 16:25:33 +00:00
12 lines
247 B
TypeScript
12 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
|
|
);
|
|
}
|
|
}
|