mirror of
https://github.com/swc-project/swc.git
synced 2024-12-29 16:42:28 +03:00
16 lines
380 B
TypeScript
16 lines
380 B
TypeScript
// Loaded from https://deno.land/x/deno_image@v0.0.3/lib/decoders/fast-png/pako/index.js
|
|
|
|
|
|
// Top level file is just a mixin of submodules & constants
|
|
import { deflate, Deflate } from "./lib/deflate.js";
|
|
import { inflate, Inflate } from "./lib/inflate.js";
|
|
import constants from "./lib/zlib/constants.js";
|
|
|
|
export {
|
|
deflate,
|
|
Deflate,
|
|
inflate,
|
|
Inflate,
|
|
constants
|
|
};
|