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
;