UNPKG
@feng-j/console-progress
Version:
latest (1.5.0)
1.5.0
1.3.0
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
0.0.1
在 node 终端控制台中输出进度条
github.com/Fengjing95/console-progress
Fengjing95/console-progress
@feng-j/console-progress
/
lib
/
types
/
utils
/
common.d.ts
11 lines
(10 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 清除对象中的 undefined 值 *
@param
obj 目标对象 */
export
declare
function
cleanObject
(
obj
:
Record
<
string
,
unknown
>
):
void
;
/** * 判断是否为 HEX 颜色值 *
@param
hex 颜色值 */
export
declare
function
isHEX
(
hex
:
string
):
boolean
;