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) • 420 B
import ROM, { ROMProps } from './rom.js'; interface DiskProps extends Omit<ROMProps, 'size'> { size?: number; } /** * "CMPro includes disk support but at this time, RomCenter does not. MD5 and * SHA1 do not both need to be specified in the data file:" * @see http://www.logiqx.com/DatFAQs/CMPro.php */ export default class Disk extends ROM implements DiskProps { constructor(props?: DiskProps); } export {};