@angular/compiler 18.2.0-next.2 → 18.2.0-next.4

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v18.2.0-next.2
2
+ * @license Angular v18.2.0-next.4
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1381,8 +1381,8 @@ export declare class ExternalExpr extends Expression {
1381
1381
  export declare class ExternalReference {
1382
1382
  moduleName: string | null;
1383
1383
  name: string | null;
1384
- runtime?: (any | null) | undefined;
1385
- constructor(moduleName: string | null, name: string | null, runtime?: (any | null) | undefined);
1384
+ runtime?: any | null;
1385
+ constructor(moduleName: string | null, name: string | null, runtime?: any | null);
1386
1386
  }
1387
1387
 
1388
1388
  declare interface ExternalReferenceResolver {
@@ -2474,9 +2474,9 @@ declare class Parser_2 {
2474
2474
  export declare class ParserError {
2475
2475
  input: string;
2476
2476
  errLocation: string;
2477
- ctxLocation?: any | undefined;
2477
+ ctxLocation?: any;
2478
2478
  message: string;
2479
- constructor(message: string, input: string, errLocation: string, ctxLocation?: any | undefined);
2479
+ constructor(message: string, input: string, errLocation: string, ctxLocation?: any);
2480
2480
  }
2481
2481
 
2482
2482
  declare function parseSelectorToR3Selector(selector: string | null): R3CssSelectorList;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler",
3
- "version": "18.2.0-next.2",
3
+ "version": "18.2.0-next.4",
4
4
  "description": "Angular - the compiler library",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -11,7 +11,7 @@
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
14
- "@angular/core": "18.2.0-next.2"
14
+ "@angular/core": "18.2.0-next.4"
15
15
  },
16
16
  "peerDependenciesMeta": {
17
17
  "@angular/core": {