Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ts-progress

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-progress - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

2

package.json
{
"name": "ts-progress",
"version": "0.0.5",
"version": "0.0.6",
"description": "Flexible node progress bar.",

@@ -5,0 +5,0 @@ "main": "progress.js",

@@ -13,17 +13,16 @@ interface IProgressOptions{

declare var progress: {
/**
* @deprecated use Progress.create(options: IProgressOptions)
*/
new (total: number, pattern?: string, textColor?: string, title?: string, updateFrequency?: number): Progress;
/**
* Creates new progress bar object
* @param options {IProgressOptions}
* @returns {Progress}
*/
create(options: IProgressOptions): Progress
};
declare module "ts-progress"{
var progress: {
/**
* @deprecated use Progress.create(options: IProgressOptions)
*/
new (total: number, pattern?: string, textColor?: string, title?: string, updateFrequency?: number): Progress;
/**
* Creates new progress bar object
* @param options {IProgressOptions}
* @returns {Progress}
*/
create(options: IProgressOptions): Progress
};
export = progress;
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc