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) • 501 B
import File from '../files/file.js'; import Patch from './patch.js'; /** * @see http://deufeufeu.free.fr/wiki/index.php?title=DPS (original, dead) * @see https://github.com/btimofeev/UniPatcher/wiki/DPS */ export default class DPSPatch extends Patch { static readonly SUPPORTED_EXTENSIONS: string[]; static patchFrom(file: File): DPSPatch; createPatchedFile(inputRomFile: File, outputRomPath: string): Promise<void>; private static writeOutputFile; private static applyPatch; }