export interface Deferred extends Promise { done (cb: (x: T) => void | any): this fail (cb: (error: Error) => void | any): this }