mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +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
|
||
|
};
|