UNPKG

@juit/check-updates

Version:

Small and fast utility to update package dependencies

9 lines (8 loc) 307 B
/** Cache of versions */ export declare class VersionsCache { private _cache; private _debug; constructor(debug?: boolean); /** Return the available versions for a package, sorted */ getVersions(name: string, npmrc: Record<string, any>, includePrerelease: boolean): Promise<string[]>; }