@angular-devkit/core
Advanced tools
Comparing version 19.0.0-next.6 to 19.0.0-next.7
{ | ||
"name": "@angular-devkit/core", | ||
"version": "19.0.0-next.6", | ||
"version": "19.0.0-next.7", | ||
"description": "Angular DevKit - Core Utility Library", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -25,11 +25,11 @@ /** | ||
*/ | ||
entries(): IterableIterator<[T, T]>; | ||
entries(): SetIterator<[T, T]>; | ||
/** | ||
* Despite its name, returns an iterable of the values in the set, | ||
*/ | ||
keys(): IterableIterator<T>; | ||
keys(): SetIterator<T>; | ||
/** | ||
* Returns an iterable of values in the set. | ||
*/ | ||
values(): IterableIterator<T>; | ||
values(): SetIterator<T>; | ||
add(item: T, deps?: Set<T> | T[]): this; | ||
@@ -36,0 +36,0 @@ delete(item: T): boolean; |
@@ -37,6 +37,6 @@ /** | ||
get size(): number; | ||
[Symbol.iterator](): IterableIterator<[string, V]>; | ||
entries(): IterableIterator<[string, V]>; | ||
keys(): IterableIterator<string>; | ||
values(): IterableIterator<V>; | ||
[Symbol.iterator](): MapIterator<[string, V]>; | ||
entries(): MapIterator<[string, V]>; | ||
keys(): MapIterator<string>; | ||
values(): MapIterator<V>; | ||
} | ||
@@ -43,0 +43,0 @@ export declare class ProjectDefinitionCollection extends DefinitionCollection<ProjectDefinition> { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
259661