mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
462 B
TypeScript
18 lines
462 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/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../angularjs/angular.d.ts" />
|
|
|
|
|
|
declare module angular {
|
|
|
|
interface IRequestShortcutConfig {
|
|
/**
|
|
* Indicates that the loading bar should be hidden.
|
|
*/
|
|
ignoreLoadingBar?: boolean;
|
|
}
|
|
|
|
} |