@angular/compiler 19.2.5 → 19.2.6
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/fesm2022/compiler.mjs +14 -15
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.2.
|
|
2
|
+
* @license Angular v19.2.6
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1072,8 +1072,8 @@ declare class TemplateLiteralExpr extends Expression {
|
|
|
1072
1072
|
clone(): TemplateLiteralExpr;
|
|
1073
1073
|
}
|
|
1074
1074
|
declare class TemplateLiteralElementExpr extends Expression {
|
|
1075
|
-
text: string;
|
|
1076
|
-
rawText: string;
|
|
1075
|
+
readonly text: string;
|
|
1076
|
+
readonly rawText: string;
|
|
1077
1077
|
constructor(text: string, sourceSpan?: ParseSourceSpan | null, rawText?: string);
|
|
1078
1078
|
visitExpression(visitor: ExpressionVisitor, context: any): any;
|
|
1079
1079
|
isEquivalent(e: Expression): boolean;
|