(
snapshot: DataSnapshot | null,
previousKey?: string | null
)
| 27 | } |
| 28 | |
| 29 | const onChildAdded = ( |
| 30 | snapshot: DataSnapshot | null, |
| 31 | previousKey?: string | null |
| 32 | ) => { |
| 33 | dispatch({ type: 'add', previousKey, snapshot }); |
| 34 | }; |
| 35 | |
| 36 | const onChildChanged = (snapshot: DataSnapshot | null) => { |
| 37 | dispatch({ type: 'change', snapshot }); |
no outgoing calls
no test coverage detected