zelda64
Version:
Zelda64.js is a library that can compress, decompress and patch Nintendo 64 Zelda game ROMs.
13 lines (12 loc) • 376 B
TypeScript
import Compressor, { Operation } from "./compressor";
import Decompressor from "./decompressor";
import Patcher from "./patcher";
import Rom from "./rom";
declare const Zelda64: {
Rom: typeof Rom;
Compressor: typeof Compressor;
Decompressor: typeof Decompressor;
Patcher: typeof Patcher;
Operation: typeof Operation;
};
export default Zelda64;