chore: a few style fixes for internal-ambient.d.ts (#26347)

This commit is contained in:
David Sanders 2020-11-05 14:13:02 -08:00 коммит произвёл GitHub
Родитель 43dbd1bdf8
Коммит 2c52d5fe42
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

6
typings/internal-ambient.d.ts поставляемый
Просмотреть файл

@ -227,7 +227,7 @@ declare namespace NodeJS {
}
}
declare module NodeJS {
declare module NodeJS {
interface Global {
require: NodeRequire;
module: NodeModule;
@ -319,7 +319,7 @@ interface ResizeObserverEntry {
// https://github.com/microsoft/TypeScript/pull/38232
interface WeakRef<T extends object> {
readonly [Symbol.toStringTag]: "WeakRef";
readonly [Symbol.toStringTag]: 'WeakRef';
/**
* Returns the WeakRef instance's target object, or undefined if the target object has been
@ -341,7 +341,7 @@ interface WeakRefConstructor {
declare var WeakRef: WeakRefConstructor;
interface FinalizationRegistry {
readonly [Symbol.toStringTag]: "FinalizationRegistry";
readonly [Symbol.toStringTag]: 'FinalizationRegistry';
/**
* Registers an object with the registry.