1interface PromiseConstructor { 2 new <T>(): Promise<T>; 3} 4declare var Promise: PromiseConstructor; 5interface Promise<T> { 6}