Skip to content

Commit

Permalink
chore: use null
Browse files Browse the repository at this point in the history
  • Loading branch information
cartant committed Sep 25, 2020
1 parent 8c9a4a7 commit 0a6aca5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/internal/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ export const config = {
* we do not want errors thrown in this user-configured handler to interfere with the
* behavior of the library.
*/
onStoppedNotification: undefined as
onStoppedNotification: null as
| ((notification: { kind: 'N'; value: any } | { kind: 'E'; error: any } | { kind: 'C' }, subscriber: Subscriber<any>) => void)
| undefined,
| null,

/**
* The promise constructor used by default for methods such as
Expand Down

0 comments on commit 0a6aca5

Please sign in to comment.