Add spec for ExceptionsManager (#24900)

Summary:
Part of #24875, adds a spec for ExceptionsManager

## Changelog

[General] [Added] - TM Add spec for ExceptionsManager
Pull Request resolved: https://github.com/facebook/react-native/pull/24900

Reviewed By: fkgozali

Differential Revision: D15434006

Pulled By: RSNara

fbshipit-source-id: 1a505744a84c0c4ac3a9fac6c91a391fbd8a9f46
This commit is contained in:
Michał Pierzchała
2019-05-22 13:10:24 -07:00
committed by Facebook Github Bot
parent 65b10b350e
commit 8ea749ad3e
9 changed files with 66 additions and 23 deletions
+1 -6
View File
@@ -10,12 +10,7 @@
'use strict';
export type StackFrame = {
column: ?number,
file: string,
lineNumber: number,
methodName: string,
};
import type {StackFrame} from '../NativeExceptionsManager';
export type ExtendedError = Error & {
framesToPop?: number,