UNPKG
hackpro-sdk
Version:
latest (2.0.17)
2.0.17
Etcher SDK
github.com/balena-io-modules/etcher-sdk
manashathparia/hackpro-sdk
hackpro-sdk
/
typings
/
progress
/
index.d.ts
11 lines
(9 loc)
•
231 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
module
'progress'
{
class
ProgressBar
{
public
curr
:
number
;
constructor
(
fmt
:
string
,
options
:
any
);
public
tick
(
value
:
number
,
options
:
any
):
void
;
public
terminate
():
void
; }
export
=
ProgressBar
; }