DefinitelyTyped/angular-loading-bar/angular-loading-bar.d.ts
unknown bf9e64cc1d Added definitions for angular-loading-bar
fixes type strictness for typescript 1.6+
2015-10-13 19:00:32 +02:00

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;
}
}