@zenstackhq/language 2.9.1 → 2.9.2
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/ast.d.ts +4 -0
- package/package.json +1 -1
package/ast.d.ts
CHANGED
|
@@ -33,6 +33,10 @@ declare module './generated/ast' {
|
|
|
33
33
|
* Indicates whether the model is already merged with the base types
|
|
34
34
|
*/
|
|
35
35
|
$baseMerged?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* All fields including those marked with `@ignore`
|
|
38
|
+
*/
|
|
39
|
+
$allFields?: DataModelField[];
|
|
36
40
|
}
|
|
37
41
|
}
|
|
38
42
|
export interface InheritableNode extends AstNode {
|