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.
11 lines (10 loc) • 356 B
TypeScript
import File from '../files/file.js';
import Patch from './patch.js';
/**
* @see https://github.com/btimofeev/UniPatcher/wiki/APS-(N64)
*/
export default abstract class APSPatch extends Patch {
static readonly SUPPORTED_EXTENSIONS: string[];
static readonly FILE_SIGNATURE: Buffer<ArrayBuffer>;
static patchFrom(file: File): Promise<Patch>;
}