There was an error while loading. Please reload this page.
1 parent 8bff948 commit 0dfabefCopy full SHA for 0dfabef
src/native_components/RNIContextMenuButton/RNIContextMenuButtonNativeView.ts
@@ -25,11 +25,14 @@ export type RNIContextMenuNativeViewInheritedProps = Pick<RNIContextMenuNativeVi
25
| 'onPressMenuItem'
26
>;
27
28
-export type RNIContextMenuButtonNativeViewBaseProps = RemapObject<RNIContextMenuButtonNativeComponentBaseProps, ({
29
- isMenuPrimaryAction: boolean;
30
-} & Required<
31
- RNIContextMenuNativeViewInheritedProps>
32
-)>;
+export type RNIContextMenuButtonNativeViewBaseProps = RemapObject<
+ RNIContextMenuButtonNativeComponentBaseProps,
+ (
+ Required<RNIContextMenuNativeViewInheritedProps> & {
+ isMenuPrimaryAction: boolean;
33
+ }
34
+ )
35
+>;
36
37
export type RNIContextMenuButtonNativeViewProps =
38
SharedViewEvents
0 commit comments