Skip to content

Commit 81df971

Browse files
authored
fix(types): Update signature of processEvent integration hook (#9151)
1 parent c356073 commit 81df971

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/types/src/integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ export interface Integration {
3636
* Return `null` to drop the event, or mutate the event & return it.
3737
* This receives the client that the integration was installed for as third argument.
3838
*/
39-
processEvent?(event: Event, hint: EventHint | undefined, client: Client): Event | null | PromiseLike<Event | null>;
39+
processEvent?(event: Event, hint: EventHint, client: Client): Event | null | PromiseLike<Event | null>;
4040
}

0 commit comments

Comments
 (0)