You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* 获取一个指定范围内随机数
|
|
* @param min 最小值
|
|
* @param max 最大值
|
|
*/
|
|
export declare function random(min: number, max: number): number;
|
|
|
|
declare module './ctor' {
|
|
interface XEUtilsMethods {
|
|
random: typeof random;
|
|
}
|
|
}
|
|
|
|
export default random
|
|
|