react-native-ios-utilities
Version:
Utilities for react-native + iOS and wrappers for using swift together with fabric/paper + JSI
14 lines (11 loc) • 376 B
text/typescript
export type SupportedNativePrimitiveSharedValue =
| string
| number
| boolean
| null
| undefined;
export type SupportedNativeSharedValue =
| SupportedNativePrimitiveSharedValue
| Record<string, SupportedNativePrimitiveSharedValue>
| Array<SupportedNativePrimitiveSharedValue>;
export type SharedNativeValueMap = Record<string, SupportedNativeSharedValue>;