react-native
Version:
A framework for building native apps using React
34 lines (31 loc) • 1.04 kB
JavaScript
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
* @format
*/
export type ExtendedError = Error &
interface {
jsEngine?: string,
preventSymbolication?: boolean,
componentStack?: string,
isComponentError?: boolean,
type?: string,
// Note: A field keyed by the Symbol ExceptionsManager.decoratedExtraDataKey is also read from ExtendedErrors.
// This field isn't documented in the types as Flow does not support this usecase, but it's effectively:
// [decoratedExtraDataKey]?: {[string]: mixed},
// Included for native errors
cause?: {
name: string,
message: string,
// $FlowFixMe[unclear-type]
stackElements?: $ReadOnlyArray<Object>,
// $FlowFixMe[unclear-type]
stackSymbols?: $ReadOnlyArray<Object>,
// $FlowFixMe[unclear-type]
stackReturnAddresses?: $ReadOnlyArray<Object>,
},
};