@angular-devkit/core 19.0.0-next.6 → 19.0.0-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -22,15 +22,15 @@ export declare class PartiallyOrderedSet<T> implements Set<T> {
|
|
|
22
22
|
/**
|
|
23
23
|
* Returns an iterable of [v,v] pairs for every value `v` in the set.
|
|
24
24
|
*/
|
|
25
|
-
entries():
|
|
25
|
+
entries(): SetIterator<[T, T]>;
|
|
26
26
|
/**
|
|
27
27
|
* Despite its name, returns an iterable of the values in the set,
|
|
28
28
|
*/
|
|
29
|
-
keys():
|
|
29
|
+
keys(): SetIterator<T>;
|
|
30
30
|
/**
|
|
31
31
|
* Returns an iterable of values in the set.
|
|
32
32
|
*/
|
|
33
|
-
values():
|
|
33
|
+
values(): SetIterator<T>;
|
|
34
34
|
add(item: T, deps?: Set<T> | T[]): this;
|
|
35
35
|
delete(item: T): boolean;
|
|
36
36
|
[Symbol.iterator](): Generator<T, undefined, unknown>;
|
|
@@ -34,10 +34,10 @@ declare class DefinitionCollection<V extends object> implements ReadonlyMap<stri
|
|
|
34
34
|
get(key: string): V | undefined;
|
|
35
35
|
has(key: string): boolean;
|
|
36
36
|
get size(): number;
|
|
37
|
-
[Symbol.iterator]():
|
|
38
|
-
entries():
|
|
39
|
-
keys():
|
|
40
|
-
values():
|
|
37
|
+
[Symbol.iterator](): MapIterator<[string, V]>;
|
|
38
|
+
entries(): MapIterator<[string, V]>;
|
|
39
|
+
keys(): MapIterator<string>;
|
|
40
|
+
values(): MapIterator<V>;
|
|
41
41
|
}
|
|
42
42
|
export declare class ProjectDefinitionCollection extends DefinitionCollection<ProjectDefinition> {
|
|
43
43
|
constructor(initial?: Record<string, ProjectDefinition>, listener?: DefinitionCollectionListener<ProjectDefinition>);
|