Skip to content

Commit 0dfabef

Browse files
committed
💄 Gloss: Fix Formatting of Type
1 parent 8bff948 commit 0dfabef

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/native_components/RNIContextMenuButton/RNIContextMenuButtonNativeView.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,14 @@ export type RNIContextMenuNativeViewInheritedProps = Pick<RNIContextMenuNativeVi
2525
| 'onPressMenuItem'
2626
>;
2727

28-
export type RNIContextMenuButtonNativeViewBaseProps = RemapObject<RNIContextMenuButtonNativeComponentBaseProps, ({
29-
isMenuPrimaryAction: boolean;
30-
} & Required<
31-
RNIContextMenuNativeViewInheritedProps>
32-
)>;
28+
export type RNIContextMenuButtonNativeViewBaseProps = RemapObject<
29+
RNIContextMenuButtonNativeComponentBaseProps,
30+
(
31+
Required<RNIContextMenuNativeViewInheritedProps> & {
32+
isMenuPrimaryAction: boolean;
33+
}
34+
)
35+
>;
3336

3437
export type RNIContextMenuButtonNativeViewProps =
3538
SharedViewEvents

0 commit comments

Comments
 (0)