DefinitelyTyped/progress
Denis 7c4c718b5b Added complete boolean to progress definition (#10843)
The `complete` variable is described as (true|false) if the progress status is completed.

Quickstart instructions has `complete` in the example.

```javascript
var ProgressBar = require('progress');

var bar = new ProgressBar(':bar', { total: 10 });
var timer = setInterval(function () {
  bar.tick();
  if (bar.complete) {
    console.log('\ncomplete\n');
    clearInterval(timer);
  }
}, 100);
```
2016-09-06 23:53:38 +09:00
..
progress-tests.ts
progress.d.ts Added complete boolean to progress definition (#10843) 2016-09-06 23:53:38 +09:00