fix(zone.js): fix typo in zone_externs (#40348)

This change fixes a typo in zone.js externs definition and avoids Closure
compiler renaming Task.cancelScheduleRequest() unexpectedly.

PR Close #40348
This commit is contained in:
Che Liu 2021-01-07 17:59:15 -08:00 committed by Andrew Scott
parent 14389755e6
commit 8116edb17f
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ Task.prototype.zone;
* @type {number}
*/
Task.prototype.runCount;
Task.prototype.cancelSchduleRequest = function() {};
Task.prototype.cancelScheduleRequest = function() {};
/**
* @interface