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.

16 lines (15 loc) • 556 B
import File from '../files/file.js'; import Patch from './patch.js'; /** * @see https://www.rfc-editor.org/rfc/rfc3284 * @see https://github.com/jmacd/xdelta */ export default class VcdiffPatch extends Patch { static readonly SUPPORTED_EXTENSIONS: string[]; static readonly FILE_SIGNATURE: Buffer<ArrayBuffer>; static patchFrom(file: File): VcdiffPatch; createPatchedFile(inputRomFile: File, outputRomPath: string): Promise<void>; private static writeOutputFile; private static applyPatch; private static applyPatchWindow; }