Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@types/ngprogress-lite

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/ngprogress-lite

TypeScript definitions for ngprogress-lite

Source
npmnpm
Version
0.0.32
Version published
Weekly downloads
8
-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/ngprogress-lite

Summary

This package contains type definitions for ngprogress-lite (https://github.com/voronianski/ngprogress-lite).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ngprogress-lite.

index.d.ts

import * as angular from "angular";

declare module "angular" {
    export namespace progressLite {
        export interface INgProgressLite {
            set(num: number): INgProgressLite;
            get(): number;
            start(): INgProgressLite;
            inc(amount?: number): INgProgressLite;
            done(): void;
        }

        export interface IConfigurationOptions {
            minimum: number;
            speed: number;
            ease: string;
            trickleRate: number;
            trickleSpeed: number;
            template: string;
        }

        export interface INgProgressLiteProvider {
            settings: IConfigurationOptions;
        }
    }
}

Additional Details

  • Last updated: Wed, 18 Oct 2023 05:47:08 GMT
  • Dependencies: @types/angular

Credits

These definitions were written by Luke Forder.

FAQs

Package last updated on 18 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts