Skip to content

Commit

Permalink
fixup! Improve SessionEventListener types
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Nov 5, 2024
1 parent 4624e87 commit f7e1acb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/core/src/SessionEventListener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ type SESSION_RESTORED_ARGS = {
};
type ERROR_ARGS = {
eventName: typeof EVENTS.ERROR;
listener: (error: string | null, errorDescription?: string | Error | null) => unknown;
listener: (
error: string | null,
errorDescription?: string | Error | null,
) => unknown;
};
type SESSION_EXTENDED_ARGS = {
eventName: typeof EVENTS.SESSION_EXTENDED;
Expand Down

0 comments on commit f7e1acb

Please sign in to comment.