UNPKG

patch-pulse

Version:

Check for outdated npm dependencies

17 lines 503 B
interface IsVersionOutdatedArgs { /** * The current version string */ current: string; /** * The latest version string to compare against */ latest: string; } /** * Checks if the current version is outdated compared to the latest version * @returns True if the current version is outdated, false otherwise */ export declare function isVersionOutdated({ current, latest, }: IsVersionOutdatedArgs): boolean; export {}; //# sourceMappingURL=isVersionOutdated.d.ts.map