Fixing test failures

This commit is contained in:
Raghav Katyal
2016-06-27 17:40:37 -07:00
parent 6090565a80
commit 89cb02de7d
72 changed files with 3779 additions and 3672 deletions

View File

@@ -5,8 +5,33 @@
/// <reference types="angularjs" />
import * as angular from 'angularjs';
declare namespace angular {
declare module 'angularjs' {
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;
}
}
interface IRequestShortcutConfig {
/**
@@ -14,30 +39,5 @@ declare namespace angular {
*/
ignoreLoadingBar?: boolean;
}
}
declare namespace angular.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;
}
}