UNPKG

npm-check-updates

Version:

Find newer versions of dependencies than what your package.json allows

9 lines (8 loc) 258 B
import { Index } from './IndexType'; import { Version } from './Version'; /** An object that represents an upgrade that was ignored, along with the reason. */ export interface IgnoredUpgrade { from: Version; to: Version; reason: Index<string>; }