mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
49 lines
946 B
TypeScript
49 lines
946 B
TypeScript
// Type definitions for angular-loading-bar
|
|
// Project: https://github.com/chieffancypants/angular-loading-bar
|
|
// Definitions by: Stephen Lautier <https://github.com/stephenlautier>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="angular" />
|
|
|
|
import * as angular from 'angular';
|
|
|
|
declare module 'angular' {
|
|
export namespace loadingBar {
|
|
|
|
interface ILoadingBarProvider {
|
|
/**
|
|
* Turn the spinner on or off
|
|
*/
|
|
includeSpinner?: boolean;
|
|
|
|
/**
|
|
* Turn the loading bar on or off
|
|
*/
|
|
includeBar?: boolean;
|
|
|
|
/**
|
|
* HTML template
|
|
*/
|
|
spinnerTemplate?: string;
|
|
|
|
/**
|
|
* Latency Threshold
|
|
*/
|
|
latencyThreshold?: number;
|
|
/**
|
|
* HTML element selector of parent
|
|
*/
|
|
parentSelector?: string;
|
|
}
|
|
}
|
|
|
|
interface IRequestShortcutConfig {
|
|
/**
|
|
* Indicates that the loading bar should be hidden.
|
|
*/
|
|
ignoreLoadingBar?: boolean;
|
|
}
|
|
|
|
}
|