Fix some cyclic types (#43630)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/43630

Changelog: [Internal]

Reviewed By: gkz

Differential Revision: D55271602

fbshipit-source-id: cb93fae6231ade6e5865dd7e0756a12568dece12
This commit is contained in:
Sam Zhou
2024-03-23 13:42:20 -07:00
committed by Facebook GitHub Bot
parent 38be5e35e6
commit 37e3626994
+2 -2
View File
@@ -126,8 +126,8 @@ function reportException(
}
declare var console: {
error: typeof console.error,
_errorOriginal: typeof console.error,
error: (...data: $ReadOnlyArray<mixed>) => void,
_errorOriginal: (...data: $ReadOnlyArray<mixed>) => void,
reportErrorsAsExceptions: boolean,
...
};