Files
bim_engine/node_modules/compare-versions/lib/esm/utils.d.ts

8 lines
359 B
TypeScript
Raw Normal View History

2025-12-03 12:00:46 +08:00
/**
* Allowed arithmetic operators
*/
export type CompareOperator = '>' | '>=' | '=' | '<' | '<=' | '!=';
export declare const semver: RegExp;
export declare const validateAndParse: (version: string) => RegExpMatchArray;
export declare const compareSegments: (a: string | string[] | RegExpMatchArray, b: string | string[] | RegExpMatchArray) => 0 | 1 | -1;