renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
13 lines (12 loc) • 654 B
TypeScript
import type { VersioningApi } from '../types';
export declare const id = "node";
export declare const displayName = "Node.js";
export declare const urls: never[];
export declare const supportsRanges = false;
export declare function isValid(version: string): boolean;
export declare function isStable(version: string): boolean;
export declare function matches(version: string, range: string): boolean;
export declare function getSatisfyingVersion(versions: string[], range: string): string | null;
export declare function minSatisfyingVersion(versions: string[], range: string): string | null;
export declare const api: VersioningApi;
export default api;