Add command type to CompleteTypeAnnotation (#48475)

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

This will be needed for the compat-check.

Changelog: [Internal]

Reviewed By: cipolleschi

Differential Revision: D67806831

fbshipit-source-id: b660c9557cafbfa2e713e85a0fd2bdc9edabf537
This commit is contained in:
Eli White
2025-01-06 18:42:37 -08:00
committed by Facebook GitHub Bot
parent 825492b199
commit c748b44183
+2
View File
@@ -439,4 +439,6 @@ export type CompleteTypeAnnotation =
| UnsafeAnyTypeAnnotation
| ArrayTypeAnnotation<CompleteTypeAnnotation>
| ObjectTypeAnnotation<CompleteTypeAnnotation>
// Components
| CommandTypeAnnotation
| CompleteReservedTypeAnnotation;