Skip to content

Commit

Permalink
Merge 8b1c450 into 3562722
Browse files Browse the repository at this point in the history
  • Loading branch information
andykog committed Mar 17, 2017
2 parents 3562722 + 8b1c450 commit c047ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/intercept-utils.ts
Expand Up @@ -22,7 +22,7 @@ export function registerInterceptor<T>(interceptable: IInterceptable<T>, handler
});
}

export function interceptChange<T>(interceptable: IInterceptable<T>, change: T): T {
export function interceptChange<T>(interceptable: IInterceptable<T | null>, change: T | null): T | null {
const prevU = untrackedStart();
try {
const interceptors = interceptable.interceptors;
Expand Down

0 comments on commit c047ac8

Please sign in to comment.