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

@ -142,7 +142,7 @@ interface ReadableStream<R = any> {
}): AsyncIterableIterator<R>;
}
declare const ReadableStream: {
declare var ReadableStream: {
prototype: ReadableStream;
new (
underlyingSource: UnderlyingByteSource,