export default class ExternalPromise { resolve: (d?: T) => any; reject: (err?: any) => any; promise: Promise; constructor(); }