Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@angular-devkit/core

Package Overview
Dependencies
Maintainers
2
Versions
763
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-devkit/core - npm Package Compare versions

Comparing version 19.0.0-next.6 to 19.0.0-next.7

2

package.json
{
"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> {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc