Update Map.clear and Set.clear jsdoc in es2015.collection.d.ts

This commit is contained in:
btoo 2024-03-06 09:27:05 -08:00 коммит произвёл GitHub
Родитель 353ccb7688
Коммит 8c84badc93
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 6 добавлений и 1 удалений

7
src/lib/es2015.collection.d.ts поставляемый
Просмотреть файл

@ -1,4 +1,7 @@
interface Map<K, V> {
/**
* Removes all elements from this map
*/
clear(): void;
/**
* @returns true if an element in the Map existed and has been removed, or false if the element does not exist.
@ -73,7 +76,9 @@ interface Set<T> {
* Appends a new element with a specified value to the end of the Set.
*/
add(value: T): this;
/**
* Removes all elements from this set
*/
clear(): void;
/**
* Removes a specified value from the Set.