click-captcha
Version:
Chinese Character Sequence Click Verification System
19 lines (18 loc) • 431 B
TypeScript
export declare class Random {
/**
* 生成指定范围内的随机整数
*/
static int(min: number, max: number): number;
/**
* 生成随机颜色
*/
static color(): string;
/**
* 生成随机灰度颜色
*/
static greyColor(min: number, max: number): string;
/**
* 生成指定范围内的随机浮点数
*/
static float(min: number, max: number): number;
}