2025-04-09 18:55:14 +08:00

11 lines
241 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @author 谦彧 <zhangmian.zm@alipay.com>
* @date 2023/11/1
*/
/**
* 返回值0标识一样大1表示v1大-1表示v2大
* @param v1
* @param v2
*/
export declare function compareVersion(v1: string, v2: string): 1 | -1 | 0;