UNPKG

607 BPlain TextView Raw
1// eslint-disable-next-line import/namespace
2import type { StackFrame } from "react-native/Libraries/Core/NativeExceptionsManager"
3import type { HermesParsedStack } from "react-native/Libraries/Core/Devtools/parseHermesStack"
4
5// Fixing react-native/Libraries/Core/Devtools/symbolicateStackTrace
6// since the native type definitions are wrong lol
7
8/** @see https://github.com/facebook/react-native/blob/v0.72.1/packages/react-native/Libraries/Core/Devtools/parseErrorStack.js#L41-L57 */
9export type ParseErrorStackFn = <T extends any[]>(
10 errorStack?: string | T | HermesParsedStack
11) => Array<StackFrame>