import Promise from './Promise'; export default class PromiseHandler { onFulfilled: Function | null; onRejected: Function | null; promise: Promise; constructor(onFulfilled: Function, onRejected: Function, promise: Promise); }