UNPKG

igir

Version:

🕹 A zero-setup ROM collection manager that sorts, filters, extracts or archives, patches, and reports on collections of any size on any OS.

14 lines (13 loc) • 507 B
import File from '../files/file.js'; import Patch from './patch.js'; /** * @see https://github.com/btimofeev/UniPatcher/wiki/APS-(GBA) * @see https://github.com/Gamer2020/Unofficial-A-ptch */ export default class APSGBAPatch extends Patch { static readonly FILE_SIGNATURE: Buffer<ArrayBuffer>; static patchFrom(file: File): Promise<APSGBAPatch>; createPatchedFile(inputRomFile: File, outputRomPath: string): Promise<void>; private static writeOutputFile; private static applyPatch; }