UNPKG
@kazupon/lerna-changelog
Version:
latest (4.3.0)
4.3.0
4.2.0
4.1.0
4.0.0
3.0.0
2.0.0
1.0.2
1.0.1
Generate a changelog for a lerna monorepo
github.com/kazupon/lerna-changelog
kazupon/lerna-changelog
@kazupon/lerna-changelog
/
lib
/
progress-bar.d.ts
11 lines
(10 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
class
ProgressBarController
{
private
bar;
constructor
(
);
init
(
title
:
string
,
total
:
number
):
void
;
tick
():
void
;
clear
():
void
;
terminate
():
void
; }
declare
const
_default
:
ProgressBarController
;
export
default
_default;