Files
copilot-toolbox-sdfdsfds/node_modules/compare-versions/lib/esm/utils.d.ts
2026-01-16 01:51:36 +00:00

8 lines
359 B
TypeScript

/**
* 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;