fix(cli/dts): Use var instead of const and let for globals (#7680)

This commit is contained in:
Nayeem Rahman 2020-09-25 22:23:35 +01:00 committed by GitHub
parent eb7f70c0b0
commit 0ffaaba164
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 16 deletions

View file

@ -231,7 +231,7 @@ interface AbortSignal extends EventTarget {
): void;
}
declare const AbortSignal: {
declare var AbortSignal: {
prototype: AbortSignal;
new (): AbortSignal;
};