| 106 | }; |
| 107 | |
| 108 | interface TransactionListItemProps { |
| 109 | itemPriceUnit: BitcoinUnit; |
| 110 | walletID: string; |
| 111 | item: Transaction & LightningTransaction; // using type intersection to have less issues with ts |
| 112 | searchQuery?: string; |
| 113 | style?: ViewStyle; |
| 114 | renderHighlightedText?: (text: string, query: string) => React.ReactElement; |
| 115 | onPress?: () => void; |
| 116 | disableNavigation?: boolean; |
| 117 | } |
| 118 | |
| 119 | type NavigationProps = NativeStackNavigationProp<DetailViewStackParamList>; |
| 120 |
nothing calls this directly
no outgoing calls
no test coverage detected