(key: string)
| 19 | * - Android: `{"key": "a"}` |
| 20 | */ |
| 21 | export function buildKeyPressEvent(key: string) { |
| 22 | return { |
| 23 | ...baseSyntheticEvent(), |
| 24 | nativeEvent: { key }, |
| 25 | }; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Experimental values: |
no test coverage detected
searching dependent graphs…