You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support [LegacyNoInterfaceObject] #873
Updates the specs -> .d.ts for the DOM .d.ts file to take into account more ways to declare something should not exist. Removing some types which aren't declared to be inside the JS runtime anymore.
Generate Worker iterable types #877
Adds webworker.iterable.generated.d.ts (which will need some compiler work to have it show up correctly)
Switch 'name' to 'void', mark as deprecated. #883
Switches the global variable name from never to void which means you will get an error if you read it. This was nearly always a mistake, we used to raise if you write to it, now you get it if you write.
Changes which could affect builds:
Support [LegacyNoInterfaceObject] #873
Updates the
specs -> .d.tsfor the DOM .d.ts file to take into account more ways to declare something should not exist. Removing some types which aren't declared to be inside the JS runtime anymore.Generate Worker iterable types #877
Adds
webworker.iterable.generated.d.ts(which will need some compiler work to have it show up correctly)Fix HkdfParams use and remove HkdfCtrParams #879
Removes
HkdfCtrParamsfrom the Web Cryptography API which was deprecated in 2016, replaced withHkdfParamswhich is in the current spec.Switch 'name' to 'void', mark as deprecated. #883
Switches the global variable
namefromnevertovoidwhich means you will get an error if you read it. This was nearly always a mistake, we used to raise if you write to it, now you get it if you write.