Skip to content
Closed
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
4 changes: 2 additions & 2 deletions packages/zone.js/lib/zone.configurations.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ interface ZoneGlobalConfigurations {
* Users can achieve this goal by defining `__zone_symbol__UNPATCHED_EVENTS = ['scroll',
* 'mousemove'];` before importing `zone.js`.
*/
__zone_symbol__UNPATCHED_EVENTS?: boolean;
__zone_symbol__UNPATCHED_EVENTS?: string[];

/**
* Define the event names of the passive listeners.
Expand All @@ -528,7 +528,7 @@ interface ZoneGlobalConfigurations {
*
* The preceding code makes all scroll event listeners passive.
*/
__zone_symbol__PASSIVE_EVENTS?: boolean;
__zone_symbol__PASSIVE_EVENTS?: string[];

/**
* Disable wrapping uncaught promise rejection.
Expand Down