UNPKG

@phenixrts/sdk

Version:
8 lines (7 loc) 251 B
import Promise from './Promise'; export default class PromiseHandler<T> { onFulfilled: Function | null; onRejected: Function | null; promise: Promise<T>; constructor(onFulfilled: Function, onRejected: Function, promise: Promise<T>); }