uni-ticket-system/node_modules/licia/randomColor.d.ts

14 lines
301 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
import random = require('./random');
import Color = require('./Color');
declare function randomColor(): string;
declare function randomColor(options: {
count?: number;
hue?: number;
lightness?: number;
format?: string;
seed?: number;
}): string | string[];
export = randomColor;