UNPKG
@harboor/cli
Version:
latest (1.0.0)
1.0.0
github.com/harboorio/cli
harboorio/cli
@harboor/cli
/
src
/
infra
/
spinner
/
index.ts
9 lines
(7 loc)
•
138 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
ora
from
"ora"
;
export
function
getSpinner
(
) {
return
ora
({
color
:
"blue"
,
prefixText
:
"[harboor]"
, }); }