Rename all entry points to index.d.ts and explicitify all file lists

This commit is contained in:
Ryan Cavanaugh
2016-05-09 17:29:10 -07:00
parent cfa7f7bab7
commit 49b1ac6a38
2899 changed files with 8483 additions and 2023 deletions

19
angular-http-auth/index.d.ts vendored Normal file
View File

@@ -0,0 +1,19 @@
// Type definitions for angular-http-auth 1.2.1
// Project: https://github.com/witoldsz/angular-http-auth
// Definitions by: vvakame <https://github.com/vvakame>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../angularjs/angularjs.d.ts" />
declare namespace angular.httpAuth {
interface IAuthService {
loginConfirmed(data?:any, configUpdater?:Function):void;
loginCancelled(data?:any, reason?:any):void;
}
interface IHttpBuffer {
append(config:ng.IRequestConfig, deferred:{resolve(data:any):void; reject(data:any):void;}):void;
rejectAll(reason?:any):void;
retryAll(updater?:Function):void;
}
}