(item, index, event)
| 48 | } |
| 49 | |
| 50 | const onOpen: MessageListEvent = (item, index, event) => { |
| 51 | if (props.onOpen instanceof Function) props.onOpen(item, index, event) |
| 52 | } |
| 53 | |
| 54 | const onDownload: MessageListEvent = (item, index, event) => { |
| 55 | if (props.onDownload instanceof Function) props.onDownload(item, index, event) |
no outgoing calls
no test coverage detected
searching dependent graphs…