mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-23 17:22:43 +00:00
9 lines
409 B
TypeScript
9 lines
409 B
TypeScript
// Type definitions for semver-stable 3.0
|
|
// Project: https://github.com/kaelzhang/node-semver-stable#readme
|
|
// Definitions by: Jamie Magee <https://github.com/JamieMagee>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function is(version: string): boolean;
|
|
export function max(versions: string[]): string;
|
|
export function maxSatisfying(versions: string[], range: string): string;
|