UNPKG
d-utils
Version:
beta (4.0.0-beta)
latest (4.0.3)
4.0.3
4.0.2
4.0.1
4.0.0
4.0.0-beta
3.0.2
3.0.1
3.0.0
2.3.3
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
1.4.0
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
0.0.1
0.0.0
d-utils
d-utils
/
dist
/
es
/
randomColor.d.ts
11 lines
(10 loc)
•
287 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** *
@description
返回rgba随机色 *
@param
{
Number
} opacity 透明度 0~1之间 *
@return
{
String
} rgba色值 *
@example
* const color = randomColor(1) * console(color) */
declare
function
randomColor
(
opacity
?:
number
):
string
;
export
default
randomColor;