fixed bluebird (dynamic version) mistake in test name

added 'preliminary typings' note to definitions
This commit is contained in:
Bart van der Schoor
2014-02-22 19:55:37 +01:00
parent bcfc6efab2
commit cc33dd64a4
2 changed files with 10 additions and 0 deletions
+10
View File
@@ -3,6 +3,13 @@
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
// note: these are preliminary typings using `any`: the generic versions are under construction, see:
// https://github.com/borisyankov/DefinitelyTyped/issues/1563
// https://github.com/borisyankov/DefinitelyTyped/tree/def/bluebird
declare module Bluebird {
interface ArrayLike {
@@ -496,3 +503,6 @@ declare module Bluebird {
filter(values:any[], filterer:(item:any, index?:number, arrayLength?:number) => any):Promise;
}
}
declare module 'bluebird' {
export = Bluebird;
}