Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

fix: parameterize wrap method on Zone #542

Merged
merged 1 commit into from
Dec 13, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/zone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ interface Zone {
* @param source A unique debug location of the API being wrapped.
* @returns {function(): *} A function which will invoke the `callback` through [Zone.runGuarded].
*/
wrap(callback: Function, source: string): Function;
wrap<F extends Function>(callback: F, source: string): F;
/**
* Invokes a function in a given zone.
*
Expand Down