From 6550e264a59748eb7027a417b05390d693e2aebe Mon Sep 17 00:00:00 2001 From: soywiz Date: Wed, 23 Apr 2014 14:26:24 +0200 Subject: [PATCH] - Added info to definition --- tspromise/tspromise.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tspromise/tspromise.d.ts b/tspromise/tspromise.d.ts index 8608d105c..0d1132ed1 100644 --- a/tspromise/tspromise.d.ts +++ b/tspromise/tspromise.d.ts @@ -1,4 +1,9 @@ -/// +// Type definitions for tspromise 0.0.4 +// Project: https://github.com/soywiz/tspromise +// Definitions by: Carlos Ballesteros Velasco +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// declare class Thenable { then(onFulfilled: (value: T) => Thenable, onRejected?: (error: Error) => TR): Thenable; then(onFulfilled: (value: T) => Thenable, onRejected?: (error: Error) => void): Thenable;