UNPKG

npm-check-updates

Version:

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

6 lines (5 loc) 332 B
import { Index } from './IndexType'; import { Options } from './Options'; import { Packument } from './Packument'; import { Version } from './Version'; export type MockedVersions = Version | Partial<Packument> | Index<Version> | Index<Partial<Packument>> | ((options: Options) => Index<Version> | Index<Partial<Packument>> | null);