export interface UnhandledRejectionEvent { /** * 被 reject 的 `Promise` 对象。iOS暂不支持 */ promise?: Promise; /** * `Promise` 被 reject 的原因 */ reason: unknown; }