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) • 387 B
TypeScript
import Logger from '../console/logger.js';
/**
* Check if the current Node.js version has reached EOL and log if it has.
*/
export default class EndOfLifeChecker {
private static readonly END_OF_LIFE_DATES;
private readonly logger;
constructor(logger: Logger);
/**
* Check the current Node.js version.
*/
check(nodejsVersion: string, now?: Date): void;
}