( payload: IIncrementPayload, context: TrackContext )
| 319 | } |
| 320 | |
| 321 | async function handleIncrement( |
| 322 | payload: IIncrementPayload, |
| 323 | context: TrackContext |
| 324 | ): Promise<void> { |
| 325 | await adjustProfileProperty(payload, context.projectId, 1); |
| 326 | } |
| 327 | |
| 328 | async function handleDecrement( |
| 329 | payload: IDecrementPayload, |
no test coverage detected