@likec4/language-server 1.17.1 → 1.19.0
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/contrib/likec4.tmLanguage.json +1 -1
- package/dist/LikeC4FileSystem.d.ts +13 -0
- package/dist/LikeC4FileSystem.js +27 -0
- package/dist/Rpc.d.ts +9 -0
- package/dist/Rpc.js +126 -0
- package/dist/ast.d.ts +200 -0
- package/dist/ast.js +276 -0
- package/dist/browser.d.ts +6 -20
- package/dist/browser.js +13 -0
- package/dist/formatting/LikeC4Formatter.d.ts +27 -0
- package/dist/formatting/LikeC4Formatter.js +261 -0
- package/dist/formatting/utils.d.ts +6 -0
- package/dist/formatting/utils.js +15 -0
- package/dist/generated/ast.d.ts +1242 -0
- package/dist/generated/ast.js +1945 -0
- package/dist/generated/grammar.d.ts +6 -0
- package/dist/generated/grammar.js +3 -0
- package/dist/generated/module.d.ts +9 -0
- package/dist/generated/module.js +23 -0
- package/dist/generated-lib/icons.d.ts +1 -0
- package/dist/{likec4lib.mjs → generated-lib/icons.js} +1 -6
- package/dist/index.d.ts +8 -31
- package/dist/index.js +13 -0
- package/dist/like-c4.langium +845 -0
- package/dist/likec4lib.d.ts +4 -6
- package/dist/likec4lib.js +4 -0
- package/dist/logger.d.ts +7 -0
- package/dist/logger.js +73 -0
- package/dist/lsp/CodeLensProvider.d.ts +9 -0
- package/dist/lsp/CodeLensProvider.js +40 -0
- package/dist/lsp/CompletionProvider.d.ts +6 -0
- package/dist/lsp/CompletionProvider.js +135 -0
- package/dist/lsp/DocumentHighlightProvider.d.ts +9 -0
- package/dist/lsp/DocumentHighlightProvider.js +10 -0
- package/dist/lsp/DocumentLinkProvider.d.ts +11 -0
- package/dist/lsp/DocumentLinkProvider.js +49 -0
- package/dist/lsp/DocumentSymbolProvider.d.ts +23 -0
- package/dist/lsp/DocumentSymbolProvider.js +202 -0
- package/dist/lsp/HoverProvider.d.ts +10 -0
- package/dist/lsp/HoverProvider.js +69 -0
- package/dist/lsp/RenameProvider.d.ts +5 -0
- package/dist/lsp/RenameProvider.js +6 -0
- package/dist/lsp/SemanticTokenProvider.d.ts +7 -0
- package/dist/lsp/SemanticTokenProvider.js +297 -0
- package/dist/lsp/index.d.ts +7 -0
- package/dist/lsp/index.js +7 -0
- package/dist/model/deployments-index.d.ts +60 -0
- package/dist/model/deployments-index.js +181 -0
- package/dist/model/fqn-computation.d.ts +3 -0
- package/dist/model/fqn-computation.js +72 -0
- package/dist/model/fqn-index.d.ts +25 -0
- package/dist/model/fqn-index.js +96 -0
- package/dist/model/index.d.ts +6 -0
- package/dist/model/index.js +6 -0
- package/dist/model/model-builder.d.ts +32 -0
- package/dist/model/model-builder.js +598 -0
- package/dist/model/model-locator.d.ts +23 -0
- package/dist/model/model-locator.js +126 -0
- package/dist/model/model-parser-where.d.ts +3 -0
- package/dist/model/model-parser-where.js +70 -0
- package/dist/model/model-parser.d.ts +292 -0
- package/dist/model/model-parser.js +72 -0
- package/dist/model/parser/Base.d.ts +28 -0
- package/dist/model/parser/Base.js +87 -0
- package/dist/model/parser/DeploymentModelParser.d.ts +33 -0
- package/dist/model/parser/DeploymentModelParser.js +162 -0
- package/dist/model/parser/DeploymentViewParser.d.ts +38 -0
- package/dist/model/parser/DeploymentViewParser.js +98 -0
- package/dist/model/parser/FqnRefParser.d.ts +29 -0
- package/dist/model/parser/FqnRefParser.js +108 -0
- package/dist/model/parser/GlobalsParser.d.ts +66 -0
- package/dist/model/parser/GlobalsParser.js +80 -0
- package/dist/model/parser/ModelParser.d.ts +27 -0
- package/dist/model/parser/ModelParser.js +122 -0
- package/dist/model/parser/PredicatesParser.d.ts +34 -0
- package/dist/model/parser/PredicatesParser.js +272 -0
- package/dist/model/parser/SpecificationParser.d.ts +27 -0
- package/dist/model/parser/SpecificationParser.js +120 -0
- package/dist/model/parser/ViewsParser.d.ts +64 -0
- package/dist/model/parser/ViewsParser.js +377 -0
- package/dist/model-change/ModelChanges.d.ts +15 -0
- package/dist/model-change/ModelChanges.js +89 -0
- package/dist/model-change/changeElementStyle.d.ts +16 -0
- package/dist/model-change/changeElementStyle.js +136 -0
- package/dist/model-change/changeViewLayout.d.ts +12 -0
- package/dist/model-change/changeViewLayout.js +32 -0
- package/dist/model-change/saveManualLayout.d.ts +11 -0
- package/dist/model-change/saveManualLayout.js +27 -0
- package/dist/module.d.ts +62 -0
- package/dist/module.js +123 -0
- package/dist/protocol.d.ts +27 -27
- package/dist/protocol.js +14 -0
- package/dist/references/index.d.ts +3 -0
- package/dist/references/index.js +3 -0
- package/dist/references/name-provider.d.ts +9 -0
- package/dist/references/name-provider.js +33 -0
- package/dist/references/scope-computation.d.ts +20 -0
- package/dist/references/scope-computation.js +281 -0
- package/dist/references/scope-provider.d.ts +16 -0
- package/dist/references/scope-provider.js +165 -0
- package/dist/shared/NodeKindProvider.d.ts +15 -0
- package/dist/shared/NodeKindProvider.js +108 -0
- package/dist/shared/WorkspaceManager.d.ts +18 -0
- package/dist/shared/WorkspaceManager.js +36 -0
- package/dist/shared/WorkspaceSymbolProvider.d.ts +3 -0
- package/dist/shared/WorkspaceSymbolProvider.js +3 -0
- package/dist/shared/index.d.ts +3 -0
- package/dist/shared/index.js +3 -0
- package/dist/test/index.d.ts +1 -0
- package/dist/test/index.js +1 -0
- package/dist/test/setup.d.ts +1 -0
- package/dist/test/setup.js +7 -0
- package/dist/test/testServices.d.ts +22 -0
- package/dist/test/testServices.js +119 -0
- package/dist/utils/elementRef.d.ts +11 -0
- package/dist/utils/elementRef.js +15 -0
- package/dist/utils/fqnRef.d.ts +8 -0
- package/dist/utils/fqnRef.js +46 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/printDocs.d.ts +2 -0
- package/dist/utils/printDocs.js +1 -0
- package/dist/utils/stringHash.d.ts +1 -0
- package/dist/utils/stringHash.js +5 -0
- package/dist/validation/_shared.d.ts +3 -0
- package/dist/validation/_shared.js +22 -0
- package/dist/validation/deployment-checks.d.ts +6 -0
- package/dist/validation/deployment-checks.js +114 -0
- package/dist/validation/dynamic-view-rule.d.ts +4 -0
- package/dist/validation/dynamic-view-rule.js +16 -0
- package/dist/validation/dynamic-view-step.d.ts +4 -0
- package/dist/validation/dynamic-view-step.js +33 -0
- package/dist/validation/element.d.ts +4 -0
- package/dist/validation/element.js +49 -0
- package/dist/validation/index.d.ts +15 -0
- package/dist/validation/index.js +152 -0
- package/dist/validation/property-checks.d.ts +6 -0
- package/dist/validation/property-checks.js +38 -0
- package/dist/validation/relation.d.ts +5 -0
- package/dist/validation/relation.js +56 -0
- package/dist/validation/specification.d.ts +11 -0
- package/dist/validation/specification.js +136 -0
- package/dist/validation/view-predicates/element-with.d.ts +4 -0
- package/dist/validation/view-predicates/element-with.js +30 -0
- package/dist/validation/view-predicates/expanded-element.d.ts +4 -0
- package/dist/validation/view-predicates/expanded-element.js +11 -0
- package/dist/validation/view-predicates/expression-v2.d.ts +5 -0
- package/dist/validation/view-predicates/expression-v2.js +83 -0
- package/dist/validation/view-predicates/incoming.d.ts +4 -0
- package/dist/validation/view-predicates/incoming.js +15 -0
- package/dist/validation/view-predicates/index.d.ts +6 -0
- package/dist/validation/view-predicates/index.js +6 -0
- package/dist/validation/view-predicates/outgoing.d.ts +4 -0
- package/dist/validation/view-predicates/outgoing.js +15 -0
- package/dist/validation/view-predicates/relation-with.d.ts +4 -0
- package/dist/validation/view-predicates/relation-with.js +12 -0
- package/dist/validation/view.d.ts +4 -0
- package/dist/validation/view.js +23 -0
- package/dist/view-utils/assignNavigateTo.d.ts +2 -0
- package/dist/view-utils/assignNavigateTo.js +25 -0
- package/dist/view-utils/index.d.ts +2 -0
- package/dist/view-utils/index.js +2 -0
- package/dist/view-utils/manual-layout.d.ts +7 -0
- package/dist/view-utils/manual-layout.js +99 -0
- package/dist/view-utils/resolve-relative-paths.d.ts +2 -0
- package/dist/view-utils/resolve-relative-paths.js +78 -0
- package/package.json +42 -73
- package/src/LikeC4FileSystem.ts +22 -21
- package/src/Rpc.ts +6 -3
- package/src/ast.ts +136 -172
- package/src/browser.ts +10 -11
- package/src/generated/ast.ts +656 -40
- package/src/generated/grammar.ts +1 -1
- package/src/index.ts +11 -8
- package/src/like-c4.langium +173 -22
- package/src/logger.ts +41 -57
- package/src/lsp/CodeLensProvider.ts +0 -1
- package/src/lsp/CompletionProvider.ts +20 -5
- package/src/lsp/DocumentSymbolProvider.ts +5 -2
- package/src/lsp/HoverProvider.ts +37 -3
- package/src/lsp/SemanticTokenProvider.ts +58 -32
- package/src/model/deployments-index.ts +222 -0
- package/src/model/fqn-computation.ts +1 -1
- package/src/model/fqn-index.ts +0 -1
- package/src/model/index.ts +1 -0
- package/src/model/model-builder.ts +176 -39
- package/src/model/model-locator.ts +36 -7
- package/src/model/model-parser.ts +69 -1119
- package/src/model/parser/Base.ts +107 -0
- package/src/model/parser/DeploymentModelParser.ts +192 -0
- package/src/model/parser/DeploymentViewParser.ts +116 -0
- package/src/model/parser/FqnRefParser.ts +118 -0
- package/src/model/parser/GlobalsParser.ts +96 -0
- package/src/model/parser/ModelParser.ts +141 -0
- package/src/model/parser/PredicatesParser.ts +291 -0
- package/src/model/parser/SpecificationParser.ts +133 -0
- package/src/model/parser/ViewsParser.ts +428 -0
- package/src/model-change/changeViewLayout.ts +2 -2
- package/src/module.ts +26 -21
- package/src/protocol.ts +10 -6
- package/src/references/index.ts +1 -0
- package/src/references/name-provider.ts +37 -0
- package/src/references/scope-computation.ts +130 -21
- package/src/references/scope-provider.ts +68 -35
- package/src/shared/NodeKindProvider.ts +15 -3
- package/src/{elementRef.ts → utils/elementRef.ts} +1 -1
- package/src/utils/fqnRef.ts +56 -0
- package/src/utils/stringHash.ts +2 -2
- package/src/validation/_shared.ts +6 -5
- package/src/validation/deployment-checks.ts +131 -0
- package/src/validation/dynamic-view-step.ts +1 -1
- package/src/validation/index.ts +104 -6
- package/src/validation/relation.ts +1 -1
- package/src/validation/view-predicates/expression-v2.ts +101 -0
- package/src/validation/view-predicates/index.ts +1 -0
- package/src/view-utils/assignNavigateTo.ts +6 -5
- package/src/view-utils/index.ts +0 -1
- package/src/view-utils/manual-layout.ts +25 -0
- package/dist/browser.cjs +0 -25
- package/dist/browser.d.cts +0 -23
- package/dist/browser.d.mts +0 -23
- package/dist/browser.mjs +0 -20
- package/dist/index.cjs +0 -53
- package/dist/index.d.cts +0 -34
- package/dist/index.d.mts +0 -34
- package/dist/index.mjs +0 -46
- package/dist/likec4lib.cjs +0 -1546
- package/dist/likec4lib.d.cts +0 -6
- package/dist/likec4lib.d.mts +0 -6
- package/dist/model-graph/index.cjs +0 -10
- package/dist/model-graph/index.d.cts +0 -81
- package/dist/model-graph/index.d.mts +0 -81
- package/dist/model-graph/index.d.ts +0 -81
- package/dist/model-graph/index.mjs +0 -1
- package/dist/protocol.cjs +0 -25
- package/dist/protocol.d.cts +0 -45
- package/dist/protocol.d.mts +0 -45
- package/dist/protocol.mjs +0 -17
- package/dist/shared/language-server.BIbAD1T-.mjs +0 -6292
- package/dist/shared/language-server.BQRvVmE0.d.cts +0 -1303
- package/dist/shared/language-server.BysPcTxr.d.ts +0 -1303
- package/dist/shared/language-server.D2QdbOJO.cjs +0 -1995
- package/dist/shared/language-server.DGrBGmsd.mjs +0 -1981
- package/dist/shared/language-server.DKV_FdPN.cjs +0 -6304
- package/dist/shared/language-server._wkyPgso.d.mts +0 -1303
- package/src/model-graph/LikeC4ModelGraph.ts +0 -338
- package/src/model-graph/compute-view/__test__/fixture.ts +0 -630
- package/src/model-graph/compute-view/compute.ts +0 -788
- package/src/model-graph/compute-view/index.ts +0 -33
- package/src/model-graph/compute-view/predicates.ts +0 -509
- package/src/model-graph/dynamic-view/__test__/fixture.ts +0 -61
- package/src/model-graph/dynamic-view/compute.ts +0 -313
- package/src/model-graph/dynamic-view/index.ts +0 -29
- package/src/model-graph/index.ts +0 -3
- package/src/model-graph/utils/applyCustomElementProperties.ts +0 -65
- package/src/model-graph/utils/applyCustomRelationProperties.ts +0 -41
- package/src/model-graph/utils/applyViewRuleStyles.ts +0 -49
- package/src/model-graph/utils/buildComputeNodes.ts +0 -113
- package/src/model-graph/utils/buildElementNotations.ts +0 -63
- package/src/model-graph/utils/elementExpressionToPredicate.ts +0 -39
- package/src/model-graph/utils/relationExpressionToPredicates.ts +0 -43
- package/src/model-graph/utils/sortNodes.ts +0 -105
- package/src/model-graph/utils/uniqueTags.test.ts +0 -42
- package/src/model-graph/utils/uniqueTags.ts +0 -19
- package/src/utils/graphlib.ts +0 -9
- package/src/view-utils/resolve-extended-views.ts +0 -66
- package/src/view-utils/resolve-global-rules.ts +0 -88
- package/src/view-utils/view-hash.ts +0 -27
|
@@ -0,0 +1,1242 @@
|
|
|
1
|
+
/******************************************************************************
|
|
2
|
+
* This file was generated by langium-cli 3.3.0.
|
|
3
|
+
* DO NOT EDIT MANUALLY!
|
|
4
|
+
******************************************************************************/
|
|
5
|
+
import type { AstNode, Reference, ReferenceInfo, TypeMetaData } from 'langium';
|
|
6
|
+
import { AbstractAstReflection } from 'langium';
|
|
7
|
+
export declare const LikeC4Terminals: {
|
|
8
|
+
BLOCK_COMMENT: RegExp;
|
|
9
|
+
LINE_COMMENT: RegExp;
|
|
10
|
+
WS: RegExp;
|
|
11
|
+
NL: RegExp;
|
|
12
|
+
LIB_ICON: RegExp;
|
|
13
|
+
URI_WITH_SCHEMA: RegExp;
|
|
14
|
+
URI_RELATIVE: RegExp;
|
|
15
|
+
DotUnderscore: RegExp;
|
|
16
|
+
DotWildcard: RegExp;
|
|
17
|
+
Hash: RegExp;
|
|
18
|
+
StickyDot: RegExp;
|
|
19
|
+
Dot: RegExp;
|
|
20
|
+
NotEqual: RegExp;
|
|
21
|
+
Eq: RegExp;
|
|
22
|
+
Percent: RegExp;
|
|
23
|
+
String: RegExp;
|
|
24
|
+
IdTerminal: RegExp;
|
|
25
|
+
Number: RegExp;
|
|
26
|
+
Hex: RegExp;
|
|
27
|
+
};
|
|
28
|
+
export type LikeC4TerminalNames = keyof typeof LikeC4Terminals;
|
|
29
|
+
export type LikeC4KeywordNames = "(" | ")" | "*" | "," | "->" | "-[" | ":" | ";" | "<-" | "<->" | "BottomTop" | "LeftRight" | "RightLeft" | "TopBottom" | "]->" | "amber" | "and" | "autoLayout" | "blue" | "border" | "browser" | "color" | "crow" | "cylinder" | "dashed" | "deployment" | "deploymentNode" | "description" | "diamond" | "dot" | "dotted" | "dynamic" | "dynamicPredicateGroup" | "element" | "element.kind" | "element.tag" | "exclude" | "extend" | "extends" | "global" | "gray" | "green" | "group" | "head" | "icon" | "icons" | "include" | "indigo" | "instance" | "instanceOf" | "is" | "kind" | "likec4lib" | "line" | "link" | "metadata" | "mobile" | "model" | "muted" | "navigateTo" | "node" | "none" | "normal" | "not" | "notation" | "notes" | "odiamond" | "odot" | "of" | "onormal" | "opacity" | "open" | "or" | "par" | "parallel" | "person" | "predicate" | "predicateGroup" | "primary" | "queue" | "rectangle" | "red" | "relationship" | "secondary" | "shape" | "sky" | "slate" | "solid" | "specification" | "storage" | "style" | "styleGroup" | "tag" | "tail" | "technology" | "title" | "vee" | "view" | "views" | "where" | "with" | "{" | "}";
|
|
30
|
+
export type LikeC4TokenNames = LikeC4TerminalNames | LikeC4KeywordNames;
|
|
31
|
+
export type ArrowType = 'crow' | 'diamond' | 'dot' | 'none' | 'normal' | 'odiamond' | 'odot' | 'onormal' | 'open' | 'vee';
|
|
32
|
+
export declare function isArrowType(item: unknown): item is ArrowType;
|
|
33
|
+
export type BorderStyleValue = 'none' | LineOptions;
|
|
34
|
+
export declare function isBorderStyleValue(item: unknown): item is BorderStyleValue;
|
|
35
|
+
export type CustomColorId = 'element' | 'model' | ArrowType | ElementShape | LineOptions | string;
|
|
36
|
+
export declare function isCustomColorId(item: unknown): item is CustomColorId;
|
|
37
|
+
export type CustomColorValue = string;
|
|
38
|
+
export declare function isCustomColorValue(item: unknown): item is CustomColorValue;
|
|
39
|
+
export type DeploymentElement = DeployedInstance | DeploymentNode;
|
|
40
|
+
export declare const DeploymentElement = "DeploymentElement";
|
|
41
|
+
export declare function isDeploymentElement(item: unknown): item is DeploymentElement;
|
|
42
|
+
export type DeploymentViewRule = DeploymentViewRulePredicate | DeploymentViewRuleStyle | ViewRuleAutoLayout;
|
|
43
|
+
export declare const DeploymentViewRule = "DeploymentViewRule";
|
|
44
|
+
export declare function isDeploymentViewRule(item: unknown): item is DeploymentViewRule;
|
|
45
|
+
export type DotId = string;
|
|
46
|
+
export declare function isDotId(item: unknown): item is DotId;
|
|
47
|
+
export type DynamicViewRule = DynamicViewGlobalPredicateRef | DynamicViewIncludePredicate | ViewRuleAutoLayout | ViewRuleStyleOrGlobalRef;
|
|
48
|
+
export declare const DynamicViewRule = "DynamicViewRule";
|
|
49
|
+
export declare function isDynamicViewRule(item: unknown): item is DynamicViewRule;
|
|
50
|
+
export type ElementExpression = ElementDescedantsExpression | ElementKindExpression | ElementRef | ElementTagExpression | ExpandElementExpression | WildcardExpression;
|
|
51
|
+
export declare const ElementExpression = "ElementExpression";
|
|
52
|
+
export declare function isElementExpression(item: unknown): item is ElementExpression;
|
|
53
|
+
export type ElementPredicate = ElementPredicateOrWhere | ElementPredicateWith;
|
|
54
|
+
export declare const ElementPredicate = "ElementPredicate";
|
|
55
|
+
export declare function isElementPredicate(item: unknown): item is ElementPredicate;
|
|
56
|
+
export type ElementPredicateOrWhere = ElementExpression | ElementPredicateWhere;
|
|
57
|
+
export declare const ElementPredicateOrWhere = "ElementPredicateOrWhere";
|
|
58
|
+
export declare function isElementPredicateOrWhere(item: unknown): item is ElementPredicateOrWhere;
|
|
59
|
+
export type ElementProperty = ElementStringProperty | ElementStyleProperty | IconProperty | LinkProperty | MetadataProperty;
|
|
60
|
+
export declare const ElementProperty = "ElementProperty";
|
|
61
|
+
export declare function isElementProperty(item: unknown): item is ElementProperty;
|
|
62
|
+
export type ElementShape = 'browser' | 'cylinder' | 'mobile' | 'person' | 'queue' | 'rectangle' | 'storage';
|
|
63
|
+
export declare function isElementShape(item: unknown): item is ElementShape;
|
|
64
|
+
export type ExpressionV2 = FqnExpr | RelationExpr;
|
|
65
|
+
export declare const ExpressionV2 = "ExpressionV2";
|
|
66
|
+
export declare function isExpressionV2(item: unknown): item is ExpressionV2;
|
|
67
|
+
export type FqnExpr = FqnRefExpr | WildcardExpression;
|
|
68
|
+
export declare const FqnExpr = "FqnExpr";
|
|
69
|
+
export declare function isFqnExpr(item: unknown): item is FqnExpr;
|
|
70
|
+
export type FqnReferenceable = Element | ExtendElement | Referenceable;
|
|
71
|
+
export declare const FqnReferenceable = "FqnReferenceable";
|
|
72
|
+
export declare function isFqnReferenceable(item: unknown): item is FqnReferenceable;
|
|
73
|
+
export type IconId = string;
|
|
74
|
+
export declare function isIconId(item: unknown): item is IconId;
|
|
75
|
+
export type Id = 'deployment' | 'element' | 'group' | 'instance' | 'model' | 'node' | ArrowType | ElementShape | LineOptions | ThemeColor | string;
|
|
76
|
+
export declare function isId(item: unknown): item is Id;
|
|
77
|
+
export type LikeC4View = DeploymentView | DynamicView | ElementView;
|
|
78
|
+
export declare const LikeC4View = "LikeC4View";
|
|
79
|
+
export declare function isLikeC4View(item: unknown): item is LikeC4View;
|
|
80
|
+
export type LineOptions = 'dashed' | 'dotted' | 'solid';
|
|
81
|
+
export declare function isLineOptions(item: unknown): item is LineOptions;
|
|
82
|
+
export type MetadataProperty = MetadataBody;
|
|
83
|
+
export declare const MetadataProperty = "MetadataProperty";
|
|
84
|
+
export declare function isMetadataProperty(item: unknown): item is MetadataProperty;
|
|
85
|
+
export type Predicate = ElementPredicate | RelationPredicate;
|
|
86
|
+
export declare const Predicate = "Predicate";
|
|
87
|
+
export declare function isPredicate(item: unknown): item is Predicate;
|
|
88
|
+
export type Referenceable = DeployedInstance | DeploymentNode | Element;
|
|
89
|
+
export declare const Referenceable = "Referenceable";
|
|
90
|
+
export declare function isReferenceable(item: unknown): item is Referenceable;
|
|
91
|
+
export type RelationExpr = DirectedRelationExpr | InOutRelationExpr | IncomingRelationExpr | OutgoingRelationExpr;
|
|
92
|
+
export declare const RelationExpr = "RelationExpr";
|
|
93
|
+
export declare function isRelationExpr(item: unknown): item is RelationExpr;
|
|
94
|
+
export type RelationExpression = DirectedRelationExpression | InOutRelationExpression | IncomingRelationExpression | OutgoingRelationExpression;
|
|
95
|
+
export declare const RelationExpression = "RelationExpression";
|
|
96
|
+
export declare function isRelationExpression(item: unknown): item is RelationExpression;
|
|
97
|
+
export type RelationPredicate = RelationPredicateOrWhere | RelationPredicateWith;
|
|
98
|
+
export declare const RelationPredicate = "RelationPredicate";
|
|
99
|
+
export declare function isRelationPredicate(item: unknown): item is RelationPredicate;
|
|
100
|
+
export type RelationPredicateOrWhere = RelationExpression | RelationPredicateWhere;
|
|
101
|
+
export declare const RelationPredicateOrWhere = "RelationPredicateOrWhere";
|
|
102
|
+
export declare function isRelationPredicateOrWhere(item: unknown): item is RelationPredicateOrWhere;
|
|
103
|
+
export type RelationProperty = LinkProperty | MetadataProperty | RelationNavigateToProperty | RelationStringProperty | RelationStyleProperty;
|
|
104
|
+
export declare const RelationProperty = "RelationProperty";
|
|
105
|
+
export declare function isRelationProperty(item: unknown): item is RelationProperty;
|
|
106
|
+
export type RelationshipStyleProperty = ArrowProperty | ColorProperty | LineProperty;
|
|
107
|
+
export declare const RelationshipStyleProperty = "RelationshipStyleProperty";
|
|
108
|
+
export declare function isRelationshipStyleProperty(item: unknown): item is RelationshipStyleProperty;
|
|
109
|
+
export type StringProperty = ElementStringProperty | MetadataAttribute | NotationProperty | NotesProperty | RelationStringProperty | SpecificationElementStringProperty | SpecificationRelationshipStringProperty | ViewStringProperty;
|
|
110
|
+
export declare const StringProperty = "StringProperty";
|
|
111
|
+
export declare function isStringProperty(item: unknown): item is StringProperty;
|
|
112
|
+
export type StyleProperty = BorderProperty | ColorProperty | IconProperty | OpacityProperty | ShapeProperty;
|
|
113
|
+
export declare const StyleProperty = "StyleProperty";
|
|
114
|
+
export declare function isStyleProperty(item: unknown): item is StyleProperty;
|
|
115
|
+
export type TagId = string;
|
|
116
|
+
export declare function isTagId(item: unknown): item is TagId;
|
|
117
|
+
export type ThemeColor = 'amber' | 'blue' | 'gray' | 'green' | 'indigo' | 'muted' | 'primary' | 'red' | 'secondary' | 'sky' | 'slate';
|
|
118
|
+
export declare function isThemeColor(item: unknown): item is ThemeColor;
|
|
119
|
+
export type Uri = string;
|
|
120
|
+
export declare function isUri(item: unknown): item is Uri;
|
|
121
|
+
export type ViewLayoutDirection = 'BottomTop' | 'LeftRight' | 'RightLeft' | 'TopBottom';
|
|
122
|
+
export declare function isViewLayoutDirection(item: unknown): item is ViewLayoutDirection;
|
|
123
|
+
export type ViewProperty = LinkProperty | ViewStringProperty;
|
|
124
|
+
export declare const ViewProperty = "ViewProperty";
|
|
125
|
+
export declare function isViewProperty(item: unknown): item is ViewProperty;
|
|
126
|
+
export type ViewRule = ViewRuleAutoLayout | ViewRuleGlobalPredicateRef | ViewRuleGroup | ViewRulePredicate | ViewRuleStyleOrGlobalRef;
|
|
127
|
+
export declare const ViewRule = "ViewRule";
|
|
128
|
+
export declare function isViewRule(item: unknown): item is ViewRule;
|
|
129
|
+
export type ViewRulePredicate = ExcludePredicate | IncludePredicate;
|
|
130
|
+
export declare const ViewRulePredicate = "ViewRulePredicate";
|
|
131
|
+
export declare function isViewRulePredicate(item: unknown): item is ViewRulePredicate;
|
|
132
|
+
export type ViewRuleStyleOrGlobalRef = ViewRuleGlobalStyle | ViewRuleStyle;
|
|
133
|
+
export declare const ViewRuleStyleOrGlobalRef = "ViewRuleStyleOrGlobalRef";
|
|
134
|
+
export declare function isViewRuleStyleOrGlobalRef(item: unknown): item is ViewRuleStyleOrGlobalRef;
|
|
135
|
+
export type WhereElement = WhereElementKind | WhereElementTag;
|
|
136
|
+
export declare const WhereElement = "WhereElement";
|
|
137
|
+
export declare function isWhereElement(item: unknown): item is WhereElement;
|
|
138
|
+
export type WhereElementExpression = WhereBinaryExpression | WhereElement | WhereElementNegation;
|
|
139
|
+
export declare const WhereElementExpression = "WhereElementExpression";
|
|
140
|
+
export declare function isWhereElementExpression(item: unknown): item is WhereElementExpression;
|
|
141
|
+
export type WhereExpression = WhereElementExpression | WhereRelationExpression;
|
|
142
|
+
export declare const WhereExpression = "WhereExpression";
|
|
143
|
+
export declare function isWhereExpression(item: unknown): item is WhereExpression;
|
|
144
|
+
export type WhereKindEqual = WhereElementKind | WhereRelationKind;
|
|
145
|
+
export declare const WhereKindEqual = "WhereKindEqual";
|
|
146
|
+
export declare function isWhereKindEqual(item: unknown): item is WhereKindEqual;
|
|
147
|
+
export type WhereRelation = WhereRelationKind | WhereRelationTag;
|
|
148
|
+
export declare const WhereRelation = "WhereRelation";
|
|
149
|
+
export declare function isWhereRelation(item: unknown): item is WhereRelation;
|
|
150
|
+
export type WhereRelationExpression = WhereBinaryExpression | WhereRelation | WhereRelationNegation;
|
|
151
|
+
export declare const WhereRelationExpression = "WhereRelationExpression";
|
|
152
|
+
export declare function isWhereRelationExpression(item: unknown): item is WhereRelationExpression;
|
|
153
|
+
export type WhereTagEqual = WhereElementTag | WhereRelationTag;
|
|
154
|
+
export declare const WhereTagEqual = "WhereTagEqual";
|
|
155
|
+
export declare function isWhereTagEqual(item: unknown): item is WhereTagEqual;
|
|
156
|
+
export interface ArrowProperty extends AstNode {
|
|
157
|
+
readonly $container: CustomRelationProperties | RelationStyleProperty | SpecificationRelationshipKind;
|
|
158
|
+
readonly $type: 'ArrowProperty';
|
|
159
|
+
key: 'head' | 'tail';
|
|
160
|
+
value: ArrowType;
|
|
161
|
+
}
|
|
162
|
+
export declare const ArrowProperty = "ArrowProperty";
|
|
163
|
+
export declare function isArrowProperty(item: unknown): item is ArrowProperty;
|
|
164
|
+
export interface BorderProperty extends AstNode {
|
|
165
|
+
readonly $container: CustomElementProperties | DeploymentViewRuleStyle | ElementStyleProperty | GlobalStyle | ViewRuleGroup | ViewRuleStyle;
|
|
166
|
+
readonly $type: 'BorderProperty';
|
|
167
|
+
key: 'border';
|
|
168
|
+
value: BorderStyleValue;
|
|
169
|
+
}
|
|
170
|
+
export declare const BorderProperty = "BorderProperty";
|
|
171
|
+
export declare function isBorderProperty(item: unknown): item is BorderProperty;
|
|
172
|
+
export interface ColorProperty extends AstNode {
|
|
173
|
+
readonly $container: CustomElementProperties | CustomRelationProperties | DeploymentViewRuleStyle | ElementStyleProperty | GlobalStyle | RelationStyleProperty | SpecificationRelationshipKind | ViewRuleGroup | ViewRuleStyle;
|
|
174
|
+
readonly $type: 'ColorProperty';
|
|
175
|
+
customColor?: Reference<CustomColor>;
|
|
176
|
+
key: 'color';
|
|
177
|
+
themeColor?: ThemeColor;
|
|
178
|
+
}
|
|
179
|
+
export declare const ColorProperty = "ColorProperty";
|
|
180
|
+
export declare function isColorProperty(item: unknown): item is ColorProperty;
|
|
181
|
+
export interface CustomColor extends AstNode {
|
|
182
|
+
readonly $container: SpecificationColor;
|
|
183
|
+
readonly $type: 'CustomColor';
|
|
184
|
+
name: CustomColorId;
|
|
185
|
+
}
|
|
186
|
+
export declare const CustomColor = "CustomColor";
|
|
187
|
+
export declare function isCustomColor(item: unknown): item is CustomColor;
|
|
188
|
+
export interface CustomElementProperties extends AstNode {
|
|
189
|
+
readonly $container: ElementPredicateWith;
|
|
190
|
+
readonly $type: 'CustomElementProperties';
|
|
191
|
+
props: Array<ElementStringProperty | NavigateToProperty | NotationProperty | StyleProperty>;
|
|
192
|
+
}
|
|
193
|
+
export declare const CustomElementProperties = "CustomElementProperties";
|
|
194
|
+
export declare function isCustomElementProperties(item: unknown): item is CustomElementProperties;
|
|
195
|
+
export interface CustomRelationProperties extends AstNode {
|
|
196
|
+
readonly $container: DynamicViewStep | RelationPredicateWith;
|
|
197
|
+
readonly $type: 'CustomRelationProperties';
|
|
198
|
+
props: Array<NotationProperty | NotesProperty | RelationNavigateToProperty | RelationStringProperty | RelationshipStyleProperty>;
|
|
199
|
+
}
|
|
200
|
+
export declare const CustomRelationProperties = "CustomRelationProperties";
|
|
201
|
+
export declare function isCustomRelationProperties(item: unknown): item is CustomRelationProperties;
|
|
202
|
+
export interface DeployedInstance extends AstNode {
|
|
203
|
+
readonly $container: DeploymentNodeBody;
|
|
204
|
+
readonly $type: 'DeployedInstance';
|
|
205
|
+
body?: DeployedInstanceBody;
|
|
206
|
+
element: ElementRef;
|
|
207
|
+
name?: Id;
|
|
208
|
+
title?: string;
|
|
209
|
+
}
|
|
210
|
+
export declare const DeployedInstance = "DeployedInstance";
|
|
211
|
+
export declare function isDeployedInstance(item: unknown): item is DeployedInstance;
|
|
212
|
+
export interface DeployedInstanceBody extends AstNode {
|
|
213
|
+
readonly $container: DeployedInstance;
|
|
214
|
+
readonly $type: 'DeployedInstanceBody';
|
|
215
|
+
props: Array<ElementProperty>;
|
|
216
|
+
tags?: Tags;
|
|
217
|
+
}
|
|
218
|
+
export declare const DeployedInstanceBody = "DeployedInstanceBody";
|
|
219
|
+
export declare function isDeployedInstanceBody(item: unknown): item is DeployedInstanceBody;
|
|
220
|
+
export interface DeploymentNode extends AstNode {
|
|
221
|
+
readonly $container: DeploymentNodeBody | ModelDeployments;
|
|
222
|
+
readonly $type: 'DeploymentNode';
|
|
223
|
+
body?: DeploymentNodeBody;
|
|
224
|
+
kind: Reference<DeploymentNodeKind>;
|
|
225
|
+
name: Id;
|
|
226
|
+
title?: string;
|
|
227
|
+
}
|
|
228
|
+
export declare const DeploymentNode = "DeploymentNode";
|
|
229
|
+
export declare function isDeploymentNode(item: unknown): item is DeploymentNode;
|
|
230
|
+
export interface DeploymentNodeBody extends AstNode {
|
|
231
|
+
readonly $container: DeploymentNode;
|
|
232
|
+
readonly $type: 'DeploymentNodeBody';
|
|
233
|
+
elements: Array<DeployedInstance | DeploymentNode | DeploymentRelation>;
|
|
234
|
+
props: Array<ElementProperty>;
|
|
235
|
+
tags?: Tags;
|
|
236
|
+
}
|
|
237
|
+
export declare const DeploymentNodeBody = "DeploymentNodeBody";
|
|
238
|
+
export declare function isDeploymentNodeBody(item: unknown): item is DeploymentNodeBody;
|
|
239
|
+
export interface DeploymentNodeKind extends AstNode {
|
|
240
|
+
readonly $container: SpecificationDeploymentNodeKind;
|
|
241
|
+
readonly $type: 'DeploymentNodeKind';
|
|
242
|
+
name: Id;
|
|
243
|
+
}
|
|
244
|
+
export declare const DeploymentNodeKind = "DeploymentNodeKind";
|
|
245
|
+
export declare function isDeploymentNodeKind(item: unknown): item is DeploymentNodeKind;
|
|
246
|
+
export interface DeploymentRelation extends AstNode {
|
|
247
|
+
readonly $container: DeploymentNodeBody | ModelDeployments;
|
|
248
|
+
readonly $type: 'DeploymentRelation';
|
|
249
|
+
body?: DeploymentRelationBody;
|
|
250
|
+
kind?: Reference<RelationshipKind>;
|
|
251
|
+
source: FqnRef;
|
|
252
|
+
tags?: Tags;
|
|
253
|
+
target: FqnRef;
|
|
254
|
+
technology?: string;
|
|
255
|
+
title?: string;
|
|
256
|
+
}
|
|
257
|
+
export declare const DeploymentRelation = "DeploymentRelation";
|
|
258
|
+
export declare function isDeploymentRelation(item: unknown): item is DeploymentRelation;
|
|
259
|
+
export interface DeploymentRelationBody extends AstNode {
|
|
260
|
+
readonly $container: DeploymentRelation;
|
|
261
|
+
readonly $type: 'DeploymentRelationBody';
|
|
262
|
+
props: Array<RelationProperty>;
|
|
263
|
+
tags?: Tags;
|
|
264
|
+
}
|
|
265
|
+
export declare const DeploymentRelationBody = "DeploymentRelationBody";
|
|
266
|
+
export declare function isDeploymentRelationBody(item: unknown): item is DeploymentRelationBody;
|
|
267
|
+
export interface DeploymentView extends AstNode {
|
|
268
|
+
readonly $container: ModelViews;
|
|
269
|
+
readonly $type: 'DeploymentView';
|
|
270
|
+
body?: DeploymentViewBody;
|
|
271
|
+
name: Id;
|
|
272
|
+
}
|
|
273
|
+
export declare const DeploymentView = "DeploymentView";
|
|
274
|
+
export declare function isDeploymentView(item: unknown): item is DeploymentView;
|
|
275
|
+
export interface DeploymentViewBody extends AstNode {
|
|
276
|
+
readonly $container: DeploymentView;
|
|
277
|
+
readonly $type: 'DeploymentViewBody';
|
|
278
|
+
props: Array<ViewProperty>;
|
|
279
|
+
rules: Array<DeploymentViewRule>;
|
|
280
|
+
tags?: Tags;
|
|
281
|
+
}
|
|
282
|
+
export declare const DeploymentViewBody = "DeploymentViewBody";
|
|
283
|
+
export declare function isDeploymentViewBody(item: unknown): item is DeploymentViewBody;
|
|
284
|
+
export interface DeploymentViewRulePredicate extends AstNode {
|
|
285
|
+
readonly $container: DeploymentViewBody;
|
|
286
|
+
readonly $type: 'DeploymentViewRulePredicate';
|
|
287
|
+
expr: DeploymentViewRulePredicateExpression;
|
|
288
|
+
isInclude: boolean;
|
|
289
|
+
}
|
|
290
|
+
export declare const DeploymentViewRulePredicate = "DeploymentViewRulePredicate";
|
|
291
|
+
export declare function isDeploymentViewRulePredicate(item: unknown): item is DeploymentViewRulePredicate;
|
|
292
|
+
export interface DeploymentViewRulePredicateExpression extends AstNode {
|
|
293
|
+
readonly $container: DeploymentViewRulePredicate | DeploymentViewRulePredicateExpression;
|
|
294
|
+
readonly $type: 'DeploymentViewRulePredicateExpression';
|
|
295
|
+
prev?: DeploymentViewRulePredicateExpression;
|
|
296
|
+
value: ExpressionV2;
|
|
297
|
+
}
|
|
298
|
+
export declare const DeploymentViewRulePredicateExpression = "DeploymentViewRulePredicateExpression";
|
|
299
|
+
export declare function isDeploymentViewRulePredicateExpression(item: unknown): item is DeploymentViewRulePredicateExpression;
|
|
300
|
+
export interface DeploymentViewRuleStyle extends AstNode {
|
|
301
|
+
readonly $container: DeploymentViewBody;
|
|
302
|
+
readonly $type: 'DeploymentViewRuleStyle';
|
|
303
|
+
props: Array<NotationProperty | StyleProperty>;
|
|
304
|
+
targets: FqnExpressions;
|
|
305
|
+
}
|
|
306
|
+
export declare const DeploymentViewRuleStyle = "DeploymentViewRuleStyle";
|
|
307
|
+
export declare function isDeploymentViewRuleStyle(item: unknown): item is DeploymentViewRuleStyle;
|
|
308
|
+
export interface DirectedRelationExpr extends AstNode {
|
|
309
|
+
readonly $container: DeploymentViewRulePredicateExpression;
|
|
310
|
+
readonly $type: 'DirectedRelationExpr';
|
|
311
|
+
source: OutgoingRelationExpr;
|
|
312
|
+
target: FqnExpr;
|
|
313
|
+
}
|
|
314
|
+
export declare const DirectedRelationExpr = "DirectedRelationExpr";
|
|
315
|
+
export declare function isDirectedRelationExpr(item: unknown): item is DirectedRelationExpr;
|
|
316
|
+
export interface DirectedRelationExpression extends AstNode {
|
|
317
|
+
readonly $container: Predicates | RelationPredicateWhere | RelationPredicateWith;
|
|
318
|
+
readonly $type: 'DirectedRelationExpression';
|
|
319
|
+
source: OutgoingRelationExpression;
|
|
320
|
+
target: ElementExpression;
|
|
321
|
+
}
|
|
322
|
+
export declare const DirectedRelationExpression = "DirectedRelationExpression";
|
|
323
|
+
export declare function isDirectedRelationExpression(item: unknown): item is DirectedRelationExpression;
|
|
324
|
+
export interface DynamicView extends AstNode {
|
|
325
|
+
readonly $container: ModelViews;
|
|
326
|
+
readonly $type: 'DynamicView';
|
|
327
|
+
body?: DynamicViewBody;
|
|
328
|
+
name: Id;
|
|
329
|
+
}
|
|
330
|
+
export declare const DynamicView = "DynamicView";
|
|
331
|
+
export declare function isDynamicView(item: unknown): item is DynamicView;
|
|
332
|
+
export interface DynamicViewBody extends AstNode {
|
|
333
|
+
readonly $container: DynamicView;
|
|
334
|
+
readonly $type: 'DynamicViewBody';
|
|
335
|
+
props: Array<ViewProperty>;
|
|
336
|
+
rules: Array<DynamicViewRule>;
|
|
337
|
+
steps: Array<DynamicViewParallelSteps | DynamicViewStep>;
|
|
338
|
+
tags?: Tags;
|
|
339
|
+
}
|
|
340
|
+
export declare const DynamicViewBody = "DynamicViewBody";
|
|
341
|
+
export declare function isDynamicViewBody(item: unknown): item is DynamicViewBody;
|
|
342
|
+
export interface DynamicViewGlobalPredicateRef extends AstNode {
|
|
343
|
+
readonly $container: DynamicViewBody;
|
|
344
|
+
readonly $type: 'DynamicViewGlobalPredicateRef';
|
|
345
|
+
predicate: Reference<GlobalDynamicPredicateGroup>;
|
|
346
|
+
}
|
|
347
|
+
export declare const DynamicViewGlobalPredicateRef = "DynamicViewGlobalPredicateRef";
|
|
348
|
+
export declare function isDynamicViewGlobalPredicateRef(item: unknown): item is DynamicViewGlobalPredicateRef;
|
|
349
|
+
export interface DynamicViewIncludePredicate extends AstNode {
|
|
350
|
+
readonly $container: DynamicViewBody | GlobalDynamicPredicateGroup;
|
|
351
|
+
readonly $type: 'DynamicViewIncludePredicate';
|
|
352
|
+
predicates: DynamicViewPredicateIterator;
|
|
353
|
+
}
|
|
354
|
+
export declare const DynamicViewIncludePredicate = "DynamicViewIncludePredicate";
|
|
355
|
+
export declare function isDynamicViewIncludePredicate(item: unknown): item is DynamicViewIncludePredicate;
|
|
356
|
+
export interface DynamicViewParallelSteps extends AstNode {
|
|
357
|
+
readonly $container: DynamicViewBody;
|
|
358
|
+
readonly $type: 'DynamicViewParallelSteps';
|
|
359
|
+
steps: Array<DynamicViewStep>;
|
|
360
|
+
}
|
|
361
|
+
export declare const DynamicViewParallelSteps = "DynamicViewParallelSteps";
|
|
362
|
+
export declare function isDynamicViewParallelSteps(item: unknown): item is DynamicViewParallelSteps;
|
|
363
|
+
export interface DynamicViewPredicateIterator extends AstNode {
|
|
364
|
+
readonly $container: DynamicViewIncludePredicate | DynamicViewPredicateIterator;
|
|
365
|
+
readonly $type: 'DynamicViewPredicateIterator';
|
|
366
|
+
prev?: DynamicViewPredicateIterator;
|
|
367
|
+
value: ElementPredicate;
|
|
368
|
+
}
|
|
369
|
+
export declare const DynamicViewPredicateIterator = "DynamicViewPredicateIterator";
|
|
370
|
+
export declare function isDynamicViewPredicateIterator(item: unknown): item is DynamicViewPredicateIterator;
|
|
371
|
+
export interface DynamicViewRef extends AstNode {
|
|
372
|
+
readonly $container: RelationNavigateToProperty;
|
|
373
|
+
readonly $type: 'DynamicViewRef';
|
|
374
|
+
view: Reference<DynamicView>;
|
|
375
|
+
}
|
|
376
|
+
export declare const DynamicViewRef = "DynamicViewRef";
|
|
377
|
+
export declare function isDynamicViewRef(item: unknown): item is DynamicViewRef;
|
|
378
|
+
export interface DynamicViewStep extends AstNode {
|
|
379
|
+
readonly $container: DynamicViewBody | DynamicViewParallelSteps;
|
|
380
|
+
readonly $type: 'DynamicViewStep';
|
|
381
|
+
custom?: CustomRelationProperties;
|
|
382
|
+
isBackward: boolean;
|
|
383
|
+
kind?: Reference<RelationshipKind>;
|
|
384
|
+
source: ElementRef;
|
|
385
|
+
target: ElementRef;
|
|
386
|
+
title?: string;
|
|
387
|
+
}
|
|
388
|
+
export declare const DynamicViewStep = "DynamicViewStep";
|
|
389
|
+
export declare function isDynamicViewStep(item: unknown): item is DynamicViewStep;
|
|
390
|
+
export interface Element extends AstNode {
|
|
391
|
+
readonly $container: ElementBody | ExtendElementBody | Model;
|
|
392
|
+
readonly $type: 'Element';
|
|
393
|
+
body?: ElementBody;
|
|
394
|
+
kind: Reference<ElementKind>;
|
|
395
|
+
name: Id;
|
|
396
|
+
props: Array<string>;
|
|
397
|
+
}
|
|
398
|
+
export declare const Element = "Element";
|
|
399
|
+
export declare function isElement(item: unknown): item is Element;
|
|
400
|
+
export interface ElementBody extends AstNode {
|
|
401
|
+
readonly $container: Element;
|
|
402
|
+
readonly $type: 'ElementBody';
|
|
403
|
+
elements: Array<Element | Relation>;
|
|
404
|
+
props: Array<ElementProperty>;
|
|
405
|
+
tags?: Tags;
|
|
406
|
+
}
|
|
407
|
+
export declare const ElementBody = "ElementBody";
|
|
408
|
+
export declare function isElementBody(item: unknown): item is ElementBody;
|
|
409
|
+
export interface ElementDescedantsExpression extends AstNode {
|
|
410
|
+
readonly $container: DirectedRelationExpression | DynamicViewPredicateIterator | ElementExpressionsIterator | ElementPredicateWhere | ElementPredicateWith | IncomingRelationExpression | OutgoingRelationExpression | Predicates;
|
|
411
|
+
readonly $type: 'ElementDescedantsExpression';
|
|
412
|
+
parent: ElementRef;
|
|
413
|
+
suffix: string;
|
|
414
|
+
}
|
|
415
|
+
export declare const ElementDescedantsExpression = "ElementDescedantsExpression";
|
|
416
|
+
export declare function isElementDescedantsExpression(item: unknown): item is ElementDescedantsExpression;
|
|
417
|
+
export interface ElementExpressionsIterator extends AstNode {
|
|
418
|
+
readonly $container: ElementExpressionsIterator | GlobalStyle | ViewRuleStyle;
|
|
419
|
+
readonly $type: 'ElementExpressionsIterator';
|
|
420
|
+
prev?: ElementExpressionsIterator;
|
|
421
|
+
value: ElementExpression;
|
|
422
|
+
}
|
|
423
|
+
export declare const ElementExpressionsIterator = "ElementExpressionsIterator";
|
|
424
|
+
export declare function isElementExpressionsIterator(item: unknown): item is ElementExpressionsIterator;
|
|
425
|
+
export interface ElementKind extends AstNode {
|
|
426
|
+
readonly $container: SpecificationElementKind;
|
|
427
|
+
readonly $type: 'ElementKind';
|
|
428
|
+
name: Id;
|
|
429
|
+
}
|
|
430
|
+
export declare const ElementKind = "ElementKind";
|
|
431
|
+
export declare function isElementKind(item: unknown): item is ElementKind;
|
|
432
|
+
export interface ElementKindExpression extends AstNode {
|
|
433
|
+
readonly $container: DirectedRelationExpression | DynamicViewPredicateIterator | ElementExpressionsIterator | ElementPredicateWhere | ElementPredicateWith | IncomingRelationExpression | OutgoingRelationExpression | Predicates;
|
|
434
|
+
readonly $type: 'ElementKindExpression';
|
|
435
|
+
isEqual: boolean;
|
|
436
|
+
kind?: Reference<ElementKind>;
|
|
437
|
+
}
|
|
438
|
+
export declare const ElementKindExpression = "ElementKindExpression";
|
|
439
|
+
export declare function isElementKindExpression(item: unknown): item is ElementKindExpression;
|
|
440
|
+
export interface ElementPredicateWhere extends AstNode {
|
|
441
|
+
readonly $container: DynamicViewPredicateIterator | ElementPredicateWith | Predicates;
|
|
442
|
+
readonly $type: 'ElementPredicateWhere';
|
|
443
|
+
subject: ElementExpression;
|
|
444
|
+
where?: WhereElementExpression;
|
|
445
|
+
}
|
|
446
|
+
export declare const ElementPredicateWhere = "ElementPredicateWhere";
|
|
447
|
+
export declare function isElementPredicateWhere(item: unknown): item is ElementPredicateWhere;
|
|
448
|
+
export interface ElementPredicateWith extends AstNode {
|
|
449
|
+
readonly $container: DynamicViewPredicateIterator | Predicates;
|
|
450
|
+
readonly $type: 'ElementPredicateWith';
|
|
451
|
+
custom?: CustomElementProperties;
|
|
452
|
+
subject: ElementPredicateOrWhere;
|
|
453
|
+
}
|
|
454
|
+
export declare const ElementPredicateWith = "ElementPredicateWith";
|
|
455
|
+
export declare function isElementPredicateWith(item: unknown): item is ElementPredicateWith;
|
|
456
|
+
export interface ElementRef extends AstNode {
|
|
457
|
+
readonly $container: DeployedInstance | DirectedRelationExpression | DynamicViewPredicateIterator | DynamicViewStep | ElementDescedantsExpression | ElementExpressionsIterator | ElementPredicateWhere | ElementPredicateWith | ElementRef | ElementView | ExpandElementExpression | IncomingRelationExpression | OutgoingRelationExpression | Predicates | Relation;
|
|
458
|
+
readonly $type: 'ElementRef';
|
|
459
|
+
el: Reference<Element>;
|
|
460
|
+
parent?: ElementRef;
|
|
461
|
+
}
|
|
462
|
+
export declare const ElementRef = "ElementRef";
|
|
463
|
+
export declare function isElementRef(item: unknown): item is ElementRef;
|
|
464
|
+
export interface ElementStringProperty extends AstNode {
|
|
465
|
+
readonly $container: CustomElementProperties | DeployedInstanceBody | DeploymentNodeBody | ElementBody;
|
|
466
|
+
readonly $type: 'ElementStringProperty';
|
|
467
|
+
key: 'description' | 'technology' | 'title';
|
|
468
|
+
value: string;
|
|
469
|
+
}
|
|
470
|
+
export declare const ElementStringProperty = "ElementStringProperty";
|
|
471
|
+
export declare function isElementStringProperty(item: unknown): item is ElementStringProperty;
|
|
472
|
+
export interface ElementStyleProperty extends AstNode {
|
|
473
|
+
readonly $container: DeployedInstanceBody | DeploymentNodeBody | ElementBody | SpecificationDeploymentNodeKind | SpecificationElementKind;
|
|
474
|
+
readonly $type: 'ElementStyleProperty';
|
|
475
|
+
key: 'style';
|
|
476
|
+
props: Array<StyleProperty>;
|
|
477
|
+
}
|
|
478
|
+
export declare const ElementStyleProperty = "ElementStyleProperty";
|
|
479
|
+
export declare function isElementStyleProperty(item: unknown): item is ElementStyleProperty;
|
|
480
|
+
export interface ElementTagExpression extends AstNode {
|
|
481
|
+
readonly $container: DirectedRelationExpression | DynamicViewPredicateIterator | ElementExpressionsIterator | ElementPredicateWhere | ElementPredicateWith | IncomingRelationExpression | OutgoingRelationExpression | Predicates;
|
|
482
|
+
readonly $type: 'ElementTagExpression';
|
|
483
|
+
isEqual: boolean;
|
|
484
|
+
tag?: Reference<Tag>;
|
|
485
|
+
}
|
|
486
|
+
export declare const ElementTagExpression = "ElementTagExpression";
|
|
487
|
+
export declare function isElementTagExpression(item: unknown): item is ElementTagExpression;
|
|
488
|
+
export interface ElementView extends AstNode {
|
|
489
|
+
readonly $container: ModelViews;
|
|
490
|
+
readonly $type: 'ElementView';
|
|
491
|
+
body?: ElementViewBody;
|
|
492
|
+
extends?: ElementViewRef;
|
|
493
|
+
name?: Id;
|
|
494
|
+
viewOf?: ElementRef;
|
|
495
|
+
}
|
|
496
|
+
export declare const ElementView = "ElementView";
|
|
497
|
+
export declare function isElementView(item: unknown): item is ElementView;
|
|
498
|
+
export interface ElementViewBody extends AstNode {
|
|
499
|
+
readonly $container: ElementView;
|
|
500
|
+
readonly $type: 'ElementViewBody';
|
|
501
|
+
props: Array<ViewProperty>;
|
|
502
|
+
rules: Array<ViewRule>;
|
|
503
|
+
tags?: Tags;
|
|
504
|
+
}
|
|
505
|
+
export declare const ElementViewBody = "ElementViewBody";
|
|
506
|
+
export declare function isElementViewBody(item: unknown): item is ElementViewBody;
|
|
507
|
+
export interface ElementViewRef extends AstNode {
|
|
508
|
+
readonly $container: ElementView;
|
|
509
|
+
readonly $type: 'ElementViewRef';
|
|
510
|
+
view: Reference<ElementView>;
|
|
511
|
+
}
|
|
512
|
+
export declare const ElementViewRef = "ElementViewRef";
|
|
513
|
+
export declare function isElementViewRef(item: unknown): item is ElementViewRef;
|
|
514
|
+
export interface ExcludePredicate extends AstNode {
|
|
515
|
+
readonly $container: ElementViewBody | GlobalPredicateGroup | ViewRuleGroup;
|
|
516
|
+
readonly $type: 'ExcludePredicate';
|
|
517
|
+
predicates: Predicates;
|
|
518
|
+
}
|
|
519
|
+
export declare const ExcludePredicate = "ExcludePredicate";
|
|
520
|
+
export declare function isExcludePredicate(item: unknown): item is ExcludePredicate;
|
|
521
|
+
export interface ExpandElementExpression extends AstNode {
|
|
522
|
+
readonly $container: DirectedRelationExpression | DynamicViewPredicateIterator | ElementExpressionsIterator | ElementPredicateWhere | ElementPredicateWith | IncomingRelationExpression | OutgoingRelationExpression | Predicates;
|
|
523
|
+
readonly $type: 'ExpandElementExpression';
|
|
524
|
+
expand: ElementRef;
|
|
525
|
+
}
|
|
526
|
+
export declare const ExpandElementExpression = "ExpandElementExpression";
|
|
527
|
+
export declare function isExpandElementExpression(item: unknown): item is ExpandElementExpression;
|
|
528
|
+
export interface ExtendElement extends AstNode {
|
|
529
|
+
readonly $container: Model;
|
|
530
|
+
readonly $type: 'ExtendElement';
|
|
531
|
+
body: ExtendElementBody;
|
|
532
|
+
element: FqnElementRef;
|
|
533
|
+
}
|
|
534
|
+
export declare const ExtendElement = "ExtendElement";
|
|
535
|
+
export declare function isExtendElement(item: unknown): item is ExtendElement;
|
|
536
|
+
export interface ExtendElementBody extends AstNode {
|
|
537
|
+
readonly $container: ExtendElement;
|
|
538
|
+
readonly $type: 'ExtendElementBody';
|
|
539
|
+
elements: Array<Element | Relation>;
|
|
540
|
+
}
|
|
541
|
+
export declare const ExtendElementBody = "ExtendElementBody";
|
|
542
|
+
export declare function isExtendElementBody(item: unknown): item is ExtendElementBody;
|
|
543
|
+
export interface FqnElementRef extends AstNode {
|
|
544
|
+
readonly $container: ExtendElement | FqnElementRef;
|
|
545
|
+
readonly $type: 'FqnElementRef';
|
|
546
|
+
el: Reference<Element>;
|
|
547
|
+
parent?: FqnElementRef;
|
|
548
|
+
}
|
|
549
|
+
export declare const FqnElementRef = "FqnElementRef";
|
|
550
|
+
export declare function isFqnElementRef(item: unknown): item is FqnElementRef;
|
|
551
|
+
export interface FqnExpressions extends AstNode {
|
|
552
|
+
readonly $container: DeploymentViewRuleStyle | FqnExpressions;
|
|
553
|
+
readonly $type: 'FqnExpressions';
|
|
554
|
+
prev?: FqnExpressions;
|
|
555
|
+
value: FqnExpr;
|
|
556
|
+
}
|
|
557
|
+
export declare const FqnExpressions = "FqnExpressions";
|
|
558
|
+
export declare function isFqnExpressions(item: unknown): item is FqnExpressions;
|
|
559
|
+
export interface FqnRef extends AstNode {
|
|
560
|
+
readonly $container: DeploymentRelation | FqnRef | FqnRefExpr;
|
|
561
|
+
readonly $type: 'FqnRef';
|
|
562
|
+
parent?: FqnRef;
|
|
563
|
+
value: Reference<Referenceable>;
|
|
564
|
+
}
|
|
565
|
+
export declare const FqnRef = "FqnRef";
|
|
566
|
+
export declare function isFqnRef(item: unknown): item is FqnRef;
|
|
567
|
+
export interface FqnRefExpr extends AstNode {
|
|
568
|
+
readonly $container: DeploymentViewRulePredicateExpression | DirectedRelationExpr | FqnExpressions | IncomingRelationExpr | OutgoingRelationExpr;
|
|
569
|
+
readonly $type: 'FqnRefExpr';
|
|
570
|
+
ref: FqnRef;
|
|
571
|
+
selector?: string;
|
|
572
|
+
}
|
|
573
|
+
export declare const FqnRefExpr = "FqnRefExpr";
|
|
574
|
+
export declare function isFqnRefExpr(item: unknown): item is FqnRefExpr;
|
|
575
|
+
export interface GlobalDynamicPredicateGroup extends AstNode {
|
|
576
|
+
readonly $container: Globals;
|
|
577
|
+
readonly $type: 'GlobalDynamicPredicateGroup';
|
|
578
|
+
name: string;
|
|
579
|
+
predicates: Array<DynamicViewIncludePredicate>;
|
|
580
|
+
}
|
|
581
|
+
export declare const GlobalDynamicPredicateGroup = "GlobalDynamicPredicateGroup";
|
|
582
|
+
export declare function isGlobalDynamicPredicateGroup(item: unknown): item is GlobalDynamicPredicateGroup;
|
|
583
|
+
export interface GlobalPredicateGroup extends AstNode {
|
|
584
|
+
readonly $container: Globals;
|
|
585
|
+
readonly $type: 'GlobalPredicateGroup';
|
|
586
|
+
name: string;
|
|
587
|
+
predicates: Array<ViewRulePredicate>;
|
|
588
|
+
}
|
|
589
|
+
export declare const GlobalPredicateGroup = "GlobalPredicateGroup";
|
|
590
|
+
export declare function isGlobalPredicateGroup(item: unknown): item is GlobalPredicateGroup;
|
|
591
|
+
export interface Globals extends AstNode {
|
|
592
|
+
readonly $container: LikeC4Grammar;
|
|
593
|
+
readonly $type: 'Globals';
|
|
594
|
+
name: 'global';
|
|
595
|
+
predicates: Array<GlobalDynamicPredicateGroup | GlobalPredicateGroup>;
|
|
596
|
+
styles: Array<GlobalStyle | GlobalStyleGroup>;
|
|
597
|
+
}
|
|
598
|
+
export declare const Globals = "Globals";
|
|
599
|
+
export declare function isGlobals(item: unknown): item is Globals;
|
|
600
|
+
export interface GlobalStyle extends AstNode {
|
|
601
|
+
readonly $container: Globals;
|
|
602
|
+
readonly $type: 'GlobalStyle';
|
|
603
|
+
id: GlobalStyleId;
|
|
604
|
+
props: Array<NotationProperty | StyleProperty>;
|
|
605
|
+
target: ElementExpressionsIterator;
|
|
606
|
+
}
|
|
607
|
+
export declare const GlobalStyle = "GlobalStyle";
|
|
608
|
+
export declare function isGlobalStyle(item: unknown): item is GlobalStyle;
|
|
609
|
+
export interface GlobalStyleGroup extends AstNode {
|
|
610
|
+
readonly $container: Globals;
|
|
611
|
+
readonly $type: 'GlobalStyleGroup';
|
|
612
|
+
id: GlobalStyleId;
|
|
613
|
+
styles: Array<ViewRuleStyle>;
|
|
614
|
+
}
|
|
615
|
+
export declare const GlobalStyleGroup = "GlobalStyleGroup";
|
|
616
|
+
export declare function isGlobalStyleGroup(item: unknown): item is GlobalStyleGroup;
|
|
617
|
+
export interface GlobalStyleId extends AstNode {
|
|
618
|
+
readonly $container: GlobalStyle | GlobalStyleGroup;
|
|
619
|
+
readonly $type: 'GlobalStyleId';
|
|
620
|
+
name: string;
|
|
621
|
+
}
|
|
622
|
+
export declare const GlobalStyleId = "GlobalStyleId";
|
|
623
|
+
export declare function isGlobalStyleId(item: unknown): item is GlobalStyleId;
|
|
624
|
+
export interface IconProperty extends AstNode {
|
|
625
|
+
readonly $container: CustomElementProperties | DeployedInstanceBody | DeploymentNodeBody | DeploymentViewRuleStyle | ElementBody | ElementStyleProperty | GlobalStyle | ViewRuleStyle;
|
|
626
|
+
readonly $type: 'IconProperty';
|
|
627
|
+
key: 'icon';
|
|
628
|
+
libicon?: Reference<LibIcon>;
|
|
629
|
+
value?: 'none' | Uri;
|
|
630
|
+
}
|
|
631
|
+
export declare const IconProperty = "IconProperty";
|
|
632
|
+
export declare function isIconProperty(item: unknown): item is IconProperty;
|
|
633
|
+
export interface IncludePredicate extends AstNode {
|
|
634
|
+
readonly $container: ElementViewBody | GlobalPredicateGroup | ViewRuleGroup;
|
|
635
|
+
readonly $type: 'IncludePredicate';
|
|
636
|
+
predicates: Predicates;
|
|
637
|
+
}
|
|
638
|
+
export declare const IncludePredicate = "IncludePredicate";
|
|
639
|
+
export declare function isIncludePredicate(item: unknown): item is IncludePredicate;
|
|
640
|
+
export interface IncomingRelationExpr extends AstNode {
|
|
641
|
+
readonly $container: DeploymentViewRulePredicateExpression | InOutRelationExpr;
|
|
642
|
+
readonly $type: 'IncomingRelationExpr';
|
|
643
|
+
to: FqnExpr;
|
|
644
|
+
}
|
|
645
|
+
export declare const IncomingRelationExpr = "IncomingRelationExpr";
|
|
646
|
+
export declare function isIncomingRelationExpr(item: unknown): item is IncomingRelationExpr;
|
|
647
|
+
export interface IncomingRelationExpression extends AstNode {
|
|
648
|
+
readonly $container: InOutRelationExpression | Predicates | RelationPredicateWhere | RelationPredicateWith;
|
|
649
|
+
readonly $type: 'IncomingRelationExpression';
|
|
650
|
+
to: ElementExpression;
|
|
651
|
+
}
|
|
652
|
+
export declare const IncomingRelationExpression = "IncomingRelationExpression";
|
|
653
|
+
export declare function isIncomingRelationExpression(item: unknown): item is IncomingRelationExpression;
|
|
654
|
+
export interface InOutRelationExpr extends AstNode {
|
|
655
|
+
readonly $container: DeploymentViewRulePredicateExpression;
|
|
656
|
+
readonly $type: 'InOutRelationExpr';
|
|
657
|
+
inout: IncomingRelationExpr;
|
|
658
|
+
}
|
|
659
|
+
export declare const InOutRelationExpr = "InOutRelationExpr";
|
|
660
|
+
export declare function isInOutRelationExpr(item: unknown): item is InOutRelationExpr;
|
|
661
|
+
export interface InOutRelationExpression extends AstNode {
|
|
662
|
+
readonly $container: Predicates | RelationPredicateWhere | RelationPredicateWith;
|
|
663
|
+
readonly $type: 'InOutRelationExpression';
|
|
664
|
+
inout: IncomingRelationExpression;
|
|
665
|
+
}
|
|
666
|
+
export declare const InOutRelationExpression = "InOutRelationExpression";
|
|
667
|
+
export declare function isInOutRelationExpression(item: unknown): item is InOutRelationExpression;
|
|
668
|
+
export interface LibIcon extends AstNode {
|
|
669
|
+
readonly $container: LikeC4Lib;
|
|
670
|
+
readonly $type: 'LibIcon';
|
|
671
|
+
name: IconId;
|
|
672
|
+
}
|
|
673
|
+
export declare const LibIcon = "LibIcon";
|
|
674
|
+
export declare function isLibIcon(item: unknown): item is LibIcon;
|
|
675
|
+
export interface LikeC4Grammar extends AstNode {
|
|
676
|
+
readonly $type: 'LikeC4Grammar';
|
|
677
|
+
deployments: Array<ModelDeployments>;
|
|
678
|
+
globals: Array<Globals>;
|
|
679
|
+
likec4lib: Array<LikeC4Lib>;
|
|
680
|
+
models: Array<Model>;
|
|
681
|
+
specifications: Array<SpecificationRule>;
|
|
682
|
+
views: Array<ModelViews>;
|
|
683
|
+
}
|
|
684
|
+
export declare const LikeC4Grammar = "LikeC4Grammar";
|
|
685
|
+
export declare function isLikeC4Grammar(item: unknown): item is LikeC4Grammar;
|
|
686
|
+
export interface LikeC4Lib extends AstNode {
|
|
687
|
+
readonly $container: LikeC4Grammar;
|
|
688
|
+
readonly $type: 'LikeC4Lib';
|
|
689
|
+
icons: Array<LibIcon>;
|
|
690
|
+
}
|
|
691
|
+
export declare const LikeC4Lib = "LikeC4Lib";
|
|
692
|
+
export declare function isLikeC4Lib(item: unknown): item is LikeC4Lib;
|
|
693
|
+
export interface LineProperty extends AstNode {
|
|
694
|
+
readonly $container: CustomRelationProperties | RelationStyleProperty | SpecificationRelationshipKind;
|
|
695
|
+
readonly $type: 'LineProperty';
|
|
696
|
+
key: 'line';
|
|
697
|
+
value: LineOptions;
|
|
698
|
+
}
|
|
699
|
+
export declare const LineProperty = "LineProperty";
|
|
700
|
+
export declare function isLineProperty(item: unknown): item is LineProperty;
|
|
701
|
+
export interface LinkProperty extends AstNode {
|
|
702
|
+
readonly $container: DeployedInstanceBody | DeploymentNodeBody | DeploymentRelationBody | DeploymentViewBody | DynamicViewBody | ElementBody | ElementViewBody | RelationBody;
|
|
703
|
+
readonly $type: 'LinkProperty';
|
|
704
|
+
key: 'link';
|
|
705
|
+
title?: string;
|
|
706
|
+
value: Uri;
|
|
707
|
+
}
|
|
708
|
+
export declare const LinkProperty = "LinkProperty";
|
|
709
|
+
export declare function isLinkProperty(item: unknown): item is LinkProperty;
|
|
710
|
+
export interface MetadataAttribute extends AstNode {
|
|
711
|
+
readonly $container: MetadataBody;
|
|
712
|
+
readonly $type: 'MetadataAttribute';
|
|
713
|
+
key: string;
|
|
714
|
+
value: string;
|
|
715
|
+
}
|
|
716
|
+
export declare const MetadataAttribute = "MetadataAttribute";
|
|
717
|
+
export declare function isMetadataAttribute(item: unknown): item is MetadataAttribute;
|
|
718
|
+
export interface MetadataBody extends AstNode {
|
|
719
|
+
readonly $container: DeployedInstanceBody | DeploymentNodeBody | DeploymentRelationBody | ElementBody | RelationBody;
|
|
720
|
+
readonly $type: 'MetadataBody';
|
|
721
|
+
props: Array<MetadataAttribute>;
|
|
722
|
+
}
|
|
723
|
+
export declare const MetadataBody = "MetadataBody";
|
|
724
|
+
export declare function isMetadataBody(item: unknown): item is MetadataBody;
|
|
725
|
+
export interface Model extends AstNode {
|
|
726
|
+
readonly $container: LikeC4Grammar;
|
|
727
|
+
readonly $type: 'Model';
|
|
728
|
+
elements: Array<Element | ExtendElement | Relation>;
|
|
729
|
+
name: 'model';
|
|
730
|
+
}
|
|
731
|
+
export declare const Model = "Model";
|
|
732
|
+
export declare function isModel(item: unknown): item is Model;
|
|
733
|
+
export interface ModelDeployments extends AstNode {
|
|
734
|
+
readonly $container: LikeC4Grammar;
|
|
735
|
+
readonly $type: 'ModelDeployments';
|
|
736
|
+
elements: Array<DeploymentNode | DeploymentRelation>;
|
|
737
|
+
name: 'deployment';
|
|
738
|
+
}
|
|
739
|
+
export declare const ModelDeployments = "ModelDeployments";
|
|
740
|
+
export declare function isModelDeployments(item: unknown): item is ModelDeployments;
|
|
741
|
+
export interface ModelViews extends AstNode {
|
|
742
|
+
readonly $container: LikeC4Grammar;
|
|
743
|
+
readonly $type: 'ModelViews';
|
|
744
|
+
name: 'views';
|
|
745
|
+
styles: Array<ViewRuleStyleOrGlobalRef>;
|
|
746
|
+
views: Array<LikeC4View>;
|
|
747
|
+
}
|
|
748
|
+
export declare const ModelViews = "ModelViews";
|
|
749
|
+
export declare function isModelViews(item: unknown): item is ModelViews;
|
|
750
|
+
export interface NavigateToProperty extends AstNode {
|
|
751
|
+
readonly $container: CustomElementProperties;
|
|
752
|
+
readonly $type: 'NavigateToProperty';
|
|
753
|
+
key: 'navigateTo';
|
|
754
|
+
value: ViewRef;
|
|
755
|
+
}
|
|
756
|
+
export declare const NavigateToProperty = "NavigateToProperty";
|
|
757
|
+
export declare function isNavigateToProperty(item: unknown): item is NavigateToProperty;
|
|
758
|
+
export interface NotationProperty extends AstNode {
|
|
759
|
+
readonly $container: CustomElementProperties | CustomRelationProperties | DeploymentViewRuleStyle | GlobalStyle | ViewRuleStyle;
|
|
760
|
+
readonly $type: 'NotationProperty';
|
|
761
|
+
key: 'notation';
|
|
762
|
+
value: string;
|
|
763
|
+
}
|
|
764
|
+
export declare const NotationProperty = "NotationProperty";
|
|
765
|
+
export declare function isNotationProperty(item: unknown): item is NotationProperty;
|
|
766
|
+
export interface NotesProperty extends AstNode {
|
|
767
|
+
readonly $container: CustomRelationProperties;
|
|
768
|
+
readonly $type: 'NotesProperty';
|
|
769
|
+
key: 'notes';
|
|
770
|
+
value: string;
|
|
771
|
+
}
|
|
772
|
+
export declare const NotesProperty = "NotesProperty";
|
|
773
|
+
export declare function isNotesProperty(item: unknown): item is NotesProperty;
|
|
774
|
+
export interface OpacityProperty extends AstNode {
|
|
775
|
+
readonly $container: CustomElementProperties | DeploymentViewRuleStyle | ElementStyleProperty | GlobalStyle | ViewRuleGroup | ViewRuleStyle;
|
|
776
|
+
readonly $type: 'OpacityProperty';
|
|
777
|
+
key: 'opacity';
|
|
778
|
+
value: string;
|
|
779
|
+
}
|
|
780
|
+
export declare const OpacityProperty = "OpacityProperty";
|
|
781
|
+
export declare function isOpacityProperty(item: unknown): item is OpacityProperty;
|
|
782
|
+
export interface OutgoingRelationExpr extends AstNode {
|
|
783
|
+
readonly $container: DeploymentViewRulePredicateExpression | DirectedRelationExpr;
|
|
784
|
+
readonly $type: 'OutgoingRelationExpr';
|
|
785
|
+
from: FqnExpr;
|
|
786
|
+
isBidirectional: boolean;
|
|
787
|
+
kind?: Reference<RelationshipKind>;
|
|
788
|
+
}
|
|
789
|
+
export declare const OutgoingRelationExpr = "OutgoingRelationExpr";
|
|
790
|
+
export declare function isOutgoingRelationExpr(item: unknown): item is OutgoingRelationExpr;
|
|
791
|
+
export interface OutgoingRelationExpression extends AstNode {
|
|
792
|
+
readonly $container: DirectedRelationExpression | Predicates | RelationPredicateWhere | RelationPredicateWith;
|
|
793
|
+
readonly $type: 'OutgoingRelationExpression';
|
|
794
|
+
from: ElementExpression;
|
|
795
|
+
isBidirectional: boolean;
|
|
796
|
+
kind?: Reference<RelationshipKind>;
|
|
797
|
+
}
|
|
798
|
+
export declare const OutgoingRelationExpression = "OutgoingRelationExpression";
|
|
799
|
+
export declare function isOutgoingRelationExpression(item: unknown): item is OutgoingRelationExpression;
|
|
800
|
+
export interface Predicates extends AstNode {
|
|
801
|
+
readonly $container: ExcludePredicate | IncludePredicate | Predicates;
|
|
802
|
+
readonly $type: 'Predicates';
|
|
803
|
+
prev?: Predicates;
|
|
804
|
+
value: Predicate;
|
|
805
|
+
}
|
|
806
|
+
export declare const Predicates = "Predicates";
|
|
807
|
+
export declare function isPredicates(item: unknown): item is Predicates;
|
|
808
|
+
export interface Relation extends AstNode {
|
|
809
|
+
readonly $container: ElementBody | ExtendElementBody | Model;
|
|
810
|
+
readonly $type: 'Relation';
|
|
811
|
+
body?: RelationBody;
|
|
812
|
+
kind?: Reference<RelationshipKind>;
|
|
813
|
+
source?: ElementRef;
|
|
814
|
+
tags?: Tags;
|
|
815
|
+
target: ElementRef;
|
|
816
|
+
technology?: string;
|
|
817
|
+
title?: string;
|
|
818
|
+
}
|
|
819
|
+
export declare const Relation = "Relation";
|
|
820
|
+
export declare function isRelation(item: unknown): item is Relation;
|
|
821
|
+
export interface RelationBody extends AstNode {
|
|
822
|
+
readonly $container: Relation;
|
|
823
|
+
readonly $type: 'RelationBody';
|
|
824
|
+
props: Array<RelationProperty>;
|
|
825
|
+
tags?: Tags;
|
|
826
|
+
}
|
|
827
|
+
export declare const RelationBody = "RelationBody";
|
|
828
|
+
export declare function isRelationBody(item: unknown): item is RelationBody;
|
|
829
|
+
export interface RelationNavigateToProperty extends AstNode {
|
|
830
|
+
readonly $container: CustomRelationProperties | DeploymentRelationBody | RelationBody;
|
|
831
|
+
readonly $type: 'RelationNavigateToProperty';
|
|
832
|
+
key: 'navigateTo';
|
|
833
|
+
value: DynamicViewRef;
|
|
834
|
+
}
|
|
835
|
+
export declare const RelationNavigateToProperty = "RelationNavigateToProperty";
|
|
836
|
+
export declare function isRelationNavigateToProperty(item: unknown): item is RelationNavigateToProperty;
|
|
837
|
+
export interface RelationPredicateWhere extends AstNode {
|
|
838
|
+
readonly $container: Predicates | RelationPredicateWith;
|
|
839
|
+
readonly $type: 'RelationPredicateWhere';
|
|
840
|
+
subject: RelationExpression;
|
|
841
|
+
where?: WhereRelationExpression;
|
|
842
|
+
}
|
|
843
|
+
export declare const RelationPredicateWhere = "RelationPredicateWhere";
|
|
844
|
+
export declare function isRelationPredicateWhere(item: unknown): item is RelationPredicateWhere;
|
|
845
|
+
export interface RelationPredicateWith extends AstNode {
|
|
846
|
+
readonly $container: Predicates;
|
|
847
|
+
readonly $type: 'RelationPredicateWith';
|
|
848
|
+
custom?: CustomRelationProperties;
|
|
849
|
+
subject: RelationPredicateOrWhere;
|
|
850
|
+
}
|
|
851
|
+
export declare const RelationPredicateWith = "RelationPredicateWith";
|
|
852
|
+
export declare function isRelationPredicateWith(item: unknown): item is RelationPredicateWith;
|
|
853
|
+
export interface RelationshipKind extends AstNode {
|
|
854
|
+
readonly $container: SpecificationRelationshipKind;
|
|
855
|
+
readonly $type: 'RelationshipKind';
|
|
856
|
+
name: Id;
|
|
857
|
+
}
|
|
858
|
+
export declare const RelationshipKind = "RelationshipKind";
|
|
859
|
+
export declare function isRelationshipKind(item: unknown): item is RelationshipKind;
|
|
860
|
+
export interface RelationStringProperty extends AstNode {
|
|
861
|
+
readonly $container: CustomRelationProperties | DeploymentRelationBody | RelationBody;
|
|
862
|
+
readonly $type: 'RelationStringProperty';
|
|
863
|
+
key: 'description' | 'technology' | 'title';
|
|
864
|
+
value: string;
|
|
865
|
+
}
|
|
866
|
+
export declare const RelationStringProperty = "RelationStringProperty";
|
|
867
|
+
export declare function isRelationStringProperty(item: unknown): item is RelationStringProperty;
|
|
868
|
+
export interface RelationStyleProperty extends AstNode {
|
|
869
|
+
readonly $container: DeploymentRelationBody | RelationBody;
|
|
870
|
+
readonly $type: 'RelationStyleProperty';
|
|
871
|
+
key: 'style';
|
|
872
|
+
props: Array<RelationshipStyleProperty>;
|
|
873
|
+
}
|
|
874
|
+
export declare const RelationStyleProperty = "RelationStyleProperty";
|
|
875
|
+
export declare function isRelationStyleProperty(item: unknown): item is RelationStyleProperty;
|
|
876
|
+
export interface ShapeProperty extends AstNode {
|
|
877
|
+
readonly $container: CustomElementProperties | DeploymentViewRuleStyle | ElementStyleProperty | GlobalStyle | ViewRuleStyle;
|
|
878
|
+
readonly $type: 'ShapeProperty';
|
|
879
|
+
key: 'shape';
|
|
880
|
+
value: ElementShape;
|
|
881
|
+
}
|
|
882
|
+
export declare const ShapeProperty = "ShapeProperty";
|
|
883
|
+
export declare function isShapeProperty(item: unknown): item is ShapeProperty;
|
|
884
|
+
export interface SpecificationColor extends AstNode {
|
|
885
|
+
readonly $container: SpecificationRule;
|
|
886
|
+
readonly $type: 'SpecificationColor';
|
|
887
|
+
color: CustomColorValue;
|
|
888
|
+
name: CustomColor;
|
|
889
|
+
}
|
|
890
|
+
export declare const SpecificationColor = "SpecificationColor";
|
|
891
|
+
export declare function isSpecificationColor(item: unknown): item is SpecificationColor;
|
|
892
|
+
export interface SpecificationDeploymentNodeKind extends AstNode {
|
|
893
|
+
readonly $container: SpecificationRule;
|
|
894
|
+
readonly $type: 'SpecificationDeploymentNodeKind';
|
|
895
|
+
kind: DeploymentNodeKind;
|
|
896
|
+
props: Array<ElementStyleProperty | SpecificationElementStringProperty>;
|
|
897
|
+
}
|
|
898
|
+
export declare const SpecificationDeploymentNodeKind = "SpecificationDeploymentNodeKind";
|
|
899
|
+
export declare function isSpecificationDeploymentNodeKind(item: unknown): item is SpecificationDeploymentNodeKind;
|
|
900
|
+
export interface SpecificationElementKind extends AstNode {
|
|
901
|
+
readonly $container: SpecificationRule;
|
|
902
|
+
readonly $type: 'SpecificationElementKind';
|
|
903
|
+
kind: ElementKind;
|
|
904
|
+
props: Array<ElementStyleProperty | SpecificationElementStringProperty>;
|
|
905
|
+
}
|
|
906
|
+
export declare const SpecificationElementKind = "SpecificationElementKind";
|
|
907
|
+
export declare function isSpecificationElementKind(item: unknown): item is SpecificationElementKind;
|
|
908
|
+
export interface SpecificationElementStringProperty extends AstNode {
|
|
909
|
+
readonly $container: SpecificationDeploymentNodeKind | SpecificationElementKind;
|
|
910
|
+
readonly $type: 'SpecificationElementStringProperty';
|
|
911
|
+
key: 'notation' | 'technology';
|
|
912
|
+
value: string;
|
|
913
|
+
}
|
|
914
|
+
export declare const SpecificationElementStringProperty = "SpecificationElementStringProperty";
|
|
915
|
+
export declare function isSpecificationElementStringProperty(item: unknown): item is SpecificationElementStringProperty;
|
|
916
|
+
export interface SpecificationRelationshipKind extends AstNode {
|
|
917
|
+
readonly $container: SpecificationRule;
|
|
918
|
+
readonly $type: 'SpecificationRelationshipKind';
|
|
919
|
+
kind: RelationshipKind;
|
|
920
|
+
props: Array<RelationshipStyleProperty | SpecificationRelationshipStringProperty>;
|
|
921
|
+
}
|
|
922
|
+
export declare const SpecificationRelationshipKind = "SpecificationRelationshipKind";
|
|
923
|
+
export declare function isSpecificationRelationshipKind(item: unknown): item is SpecificationRelationshipKind;
|
|
924
|
+
export interface SpecificationRelationshipStringProperty extends AstNode {
|
|
925
|
+
readonly $container: SpecificationRelationshipKind;
|
|
926
|
+
readonly $type: 'SpecificationRelationshipStringProperty';
|
|
927
|
+
key: 'notation' | 'technology';
|
|
928
|
+
value: string;
|
|
929
|
+
}
|
|
930
|
+
export declare const SpecificationRelationshipStringProperty = "SpecificationRelationshipStringProperty";
|
|
931
|
+
export declare function isSpecificationRelationshipStringProperty(item: unknown): item is SpecificationRelationshipStringProperty;
|
|
932
|
+
export interface SpecificationRule extends AstNode {
|
|
933
|
+
readonly $container: LikeC4Grammar;
|
|
934
|
+
readonly $type: 'SpecificationRule';
|
|
935
|
+
colors: Array<SpecificationColor>;
|
|
936
|
+
deploymentNodes: Array<SpecificationDeploymentNodeKind>;
|
|
937
|
+
elements: Array<SpecificationElementKind>;
|
|
938
|
+
name: 'specification';
|
|
939
|
+
relationships: Array<SpecificationRelationshipKind>;
|
|
940
|
+
tags: Array<SpecificationTag>;
|
|
941
|
+
}
|
|
942
|
+
export declare const SpecificationRule = "SpecificationRule";
|
|
943
|
+
export declare function isSpecificationRule(item: unknown): item is SpecificationRule;
|
|
944
|
+
export interface SpecificationTag extends AstNode {
|
|
945
|
+
readonly $container: SpecificationRule;
|
|
946
|
+
readonly $type: 'SpecificationTag';
|
|
947
|
+
tag: Tag;
|
|
948
|
+
}
|
|
949
|
+
export declare const SpecificationTag = "SpecificationTag";
|
|
950
|
+
export declare function isSpecificationTag(item: unknown): item is SpecificationTag;
|
|
951
|
+
export interface Tag extends AstNode {
|
|
952
|
+
readonly $container: SpecificationTag;
|
|
953
|
+
readonly $type: 'Tag';
|
|
954
|
+
name: Id;
|
|
955
|
+
}
|
|
956
|
+
export declare const Tag = "Tag";
|
|
957
|
+
export declare function isTag(item: unknown): item is Tag;
|
|
958
|
+
export interface Tags extends AstNode {
|
|
959
|
+
readonly $container: DeployedInstanceBody | DeploymentNodeBody | DeploymentRelation | DeploymentRelationBody | DeploymentViewBody | DynamicViewBody | ElementBody | ElementViewBody | Relation | RelationBody | Tags;
|
|
960
|
+
readonly $type: 'Tags';
|
|
961
|
+
prev?: Tags;
|
|
962
|
+
values: Array<Reference<Tag>>;
|
|
963
|
+
}
|
|
964
|
+
export declare const Tags = "Tags";
|
|
965
|
+
export declare function isTags(item: unknown): item is Tags;
|
|
966
|
+
export interface ViewRef extends AstNode {
|
|
967
|
+
readonly $container: NavigateToProperty;
|
|
968
|
+
readonly $type: 'ViewRef';
|
|
969
|
+
view: Reference<LikeC4View>;
|
|
970
|
+
}
|
|
971
|
+
export declare const ViewRef = "ViewRef";
|
|
972
|
+
export declare function isViewRef(item: unknown): item is ViewRef;
|
|
973
|
+
export interface ViewRuleAutoLayout extends AstNode {
|
|
974
|
+
readonly $container: DeploymentViewBody | DynamicViewBody | ElementViewBody;
|
|
975
|
+
readonly $type: 'ViewRuleAutoLayout';
|
|
976
|
+
direction: ViewLayoutDirection;
|
|
977
|
+
nodeSep?: number;
|
|
978
|
+
rankSep?: number;
|
|
979
|
+
}
|
|
980
|
+
export declare const ViewRuleAutoLayout = "ViewRuleAutoLayout";
|
|
981
|
+
export declare function isViewRuleAutoLayout(item: unknown): item is ViewRuleAutoLayout;
|
|
982
|
+
export interface ViewRuleGlobalPredicateRef extends AstNode {
|
|
983
|
+
readonly $container: ElementViewBody;
|
|
984
|
+
readonly $type: 'ViewRuleGlobalPredicateRef';
|
|
985
|
+
predicate: Reference<GlobalPredicateGroup>;
|
|
986
|
+
}
|
|
987
|
+
export declare const ViewRuleGlobalPredicateRef = "ViewRuleGlobalPredicateRef";
|
|
988
|
+
export declare function isViewRuleGlobalPredicateRef(item: unknown): item is ViewRuleGlobalPredicateRef;
|
|
989
|
+
export interface ViewRuleGlobalStyle extends AstNode {
|
|
990
|
+
readonly $container: DynamicViewBody | ElementViewBody | ModelViews;
|
|
991
|
+
readonly $type: 'ViewRuleGlobalStyle';
|
|
992
|
+
style: Reference<GlobalStyleId>;
|
|
993
|
+
}
|
|
994
|
+
export declare const ViewRuleGlobalStyle = "ViewRuleGlobalStyle";
|
|
995
|
+
export declare function isViewRuleGlobalStyle(item: unknown): item is ViewRuleGlobalStyle;
|
|
996
|
+
export interface ViewRuleGroup extends AstNode {
|
|
997
|
+
readonly $container: ElementViewBody | ViewRuleGroup;
|
|
998
|
+
readonly $type: 'ViewRuleGroup';
|
|
999
|
+
groupRules: Array<ViewRuleGroup | ViewRulePredicate>;
|
|
1000
|
+
props: Array<BorderProperty | ColorProperty | OpacityProperty>;
|
|
1001
|
+
title?: string;
|
|
1002
|
+
}
|
|
1003
|
+
export declare const ViewRuleGroup = "ViewRuleGroup";
|
|
1004
|
+
export declare function isViewRuleGroup(item: unknown): item is ViewRuleGroup;
|
|
1005
|
+
export interface ViewRuleStyle extends AstNode {
|
|
1006
|
+
readonly $container: DynamicViewBody | ElementViewBody | GlobalStyleGroup | ModelViews;
|
|
1007
|
+
readonly $type: 'ViewRuleStyle';
|
|
1008
|
+
props: Array<NotationProperty | StyleProperty>;
|
|
1009
|
+
target: ElementExpressionsIterator;
|
|
1010
|
+
}
|
|
1011
|
+
export declare const ViewRuleStyle = "ViewRuleStyle";
|
|
1012
|
+
export declare function isViewRuleStyle(item: unknown): item is ViewRuleStyle;
|
|
1013
|
+
export interface ViewStringProperty extends AstNode {
|
|
1014
|
+
readonly $container: DeploymentViewBody | DynamicViewBody | ElementViewBody;
|
|
1015
|
+
readonly $type: 'ViewStringProperty';
|
|
1016
|
+
key: 'description' | 'title';
|
|
1017
|
+
value: string;
|
|
1018
|
+
}
|
|
1019
|
+
export declare const ViewStringProperty = "ViewStringProperty";
|
|
1020
|
+
export declare function isViewStringProperty(item: unknown): item is ViewStringProperty;
|
|
1021
|
+
export interface WhereBinaryExpression extends AstNode {
|
|
1022
|
+
readonly $container: ElementPredicateWhere | RelationPredicateWhere | WhereBinaryExpression | WhereElementNegation | WhereRelationNegation;
|
|
1023
|
+
readonly $type: 'WhereBinaryExpression';
|
|
1024
|
+
left: WhereElementExpression | WhereRelationExpression;
|
|
1025
|
+
operator: 'and' | 'or';
|
|
1026
|
+
right: WhereElementExpression | WhereRelationExpression;
|
|
1027
|
+
}
|
|
1028
|
+
export declare const WhereBinaryExpression = "WhereBinaryExpression";
|
|
1029
|
+
export declare function isWhereBinaryExpression(item: unknown): item is WhereBinaryExpression;
|
|
1030
|
+
export interface WhereElementKind extends AstNode {
|
|
1031
|
+
readonly $container: ElementPredicateWhere | WhereBinaryExpression | WhereElementNegation;
|
|
1032
|
+
readonly $type: 'WhereElementKind';
|
|
1033
|
+
not: boolean;
|
|
1034
|
+
operator: 'is' | string;
|
|
1035
|
+
value?: Reference<ElementKind>;
|
|
1036
|
+
}
|
|
1037
|
+
export declare const WhereElementKind = "WhereElementKind";
|
|
1038
|
+
export declare function isWhereElementKind(item: unknown): item is WhereElementKind;
|
|
1039
|
+
export interface WhereElementNegation extends AstNode {
|
|
1040
|
+
readonly $container: ElementPredicateWhere | WhereBinaryExpression | WhereElementNegation;
|
|
1041
|
+
readonly $type: 'WhereElementNegation';
|
|
1042
|
+
value: WhereElementExpression;
|
|
1043
|
+
}
|
|
1044
|
+
export declare const WhereElementNegation = "WhereElementNegation";
|
|
1045
|
+
export declare function isWhereElementNegation(item: unknown): item is WhereElementNegation;
|
|
1046
|
+
export interface WhereElementTag extends AstNode {
|
|
1047
|
+
readonly $container: ElementPredicateWhere | WhereBinaryExpression | WhereElementNegation;
|
|
1048
|
+
readonly $type: 'WhereElementTag';
|
|
1049
|
+
not: boolean;
|
|
1050
|
+
operator: 'is' | string;
|
|
1051
|
+
value?: Reference<Tag>;
|
|
1052
|
+
}
|
|
1053
|
+
export declare const WhereElementTag = "WhereElementTag";
|
|
1054
|
+
export declare function isWhereElementTag(item: unknown): item is WhereElementTag;
|
|
1055
|
+
export interface WhereRelationKind extends AstNode {
|
|
1056
|
+
readonly $container: RelationPredicateWhere | WhereBinaryExpression | WhereRelationNegation;
|
|
1057
|
+
readonly $type: 'WhereRelationKind';
|
|
1058
|
+
not: boolean;
|
|
1059
|
+
operator: 'is' | string;
|
|
1060
|
+
value?: Reference<RelationshipKind>;
|
|
1061
|
+
}
|
|
1062
|
+
export declare const WhereRelationKind = "WhereRelationKind";
|
|
1063
|
+
export declare function isWhereRelationKind(item: unknown): item is WhereRelationKind;
|
|
1064
|
+
export interface WhereRelationNegation extends AstNode {
|
|
1065
|
+
readonly $container: RelationPredicateWhere | WhereBinaryExpression | WhereRelationNegation;
|
|
1066
|
+
readonly $type: 'WhereRelationNegation';
|
|
1067
|
+
value: WhereRelationExpression;
|
|
1068
|
+
}
|
|
1069
|
+
export declare const WhereRelationNegation = "WhereRelationNegation";
|
|
1070
|
+
export declare function isWhereRelationNegation(item: unknown): item is WhereRelationNegation;
|
|
1071
|
+
export interface WhereRelationTag extends AstNode {
|
|
1072
|
+
readonly $container: RelationPredicateWhere | WhereBinaryExpression | WhereRelationNegation;
|
|
1073
|
+
readonly $type: 'WhereRelationTag';
|
|
1074
|
+
not: boolean;
|
|
1075
|
+
operator: 'is' | string;
|
|
1076
|
+
value?: Reference<Tag>;
|
|
1077
|
+
}
|
|
1078
|
+
export declare const WhereRelationTag = "WhereRelationTag";
|
|
1079
|
+
export declare function isWhereRelationTag(item: unknown): item is WhereRelationTag;
|
|
1080
|
+
export interface WildcardExpression extends AstNode {
|
|
1081
|
+
readonly $container: DeploymentViewRulePredicateExpression | DirectedRelationExpr | DirectedRelationExpression | DynamicViewPredicateIterator | ElementExpressionsIterator | ElementPredicateWhere | ElementPredicateWith | FqnExpressions | IncomingRelationExpr | IncomingRelationExpression | OutgoingRelationExpr | OutgoingRelationExpression | Predicates;
|
|
1082
|
+
readonly $type: 'WildcardExpression';
|
|
1083
|
+
isWildcard: boolean;
|
|
1084
|
+
}
|
|
1085
|
+
export declare const WildcardExpression = "WildcardExpression";
|
|
1086
|
+
export declare function isWildcardExpression(item: unknown): item is WildcardExpression;
|
|
1087
|
+
export type LikeC4AstType = {
|
|
1088
|
+
ArrowProperty: ArrowProperty;
|
|
1089
|
+
BorderProperty: BorderProperty;
|
|
1090
|
+
ColorProperty: ColorProperty;
|
|
1091
|
+
CustomColor: CustomColor;
|
|
1092
|
+
CustomElementProperties: CustomElementProperties;
|
|
1093
|
+
CustomRelationProperties: CustomRelationProperties;
|
|
1094
|
+
DeployedInstance: DeployedInstance;
|
|
1095
|
+
DeployedInstanceBody: DeployedInstanceBody;
|
|
1096
|
+
DeploymentElement: DeploymentElement;
|
|
1097
|
+
DeploymentNode: DeploymentNode;
|
|
1098
|
+
DeploymentNodeBody: DeploymentNodeBody;
|
|
1099
|
+
DeploymentNodeKind: DeploymentNodeKind;
|
|
1100
|
+
DeploymentRelation: DeploymentRelation;
|
|
1101
|
+
DeploymentRelationBody: DeploymentRelationBody;
|
|
1102
|
+
DeploymentView: DeploymentView;
|
|
1103
|
+
DeploymentViewBody: DeploymentViewBody;
|
|
1104
|
+
DeploymentViewRule: DeploymentViewRule;
|
|
1105
|
+
DeploymentViewRulePredicate: DeploymentViewRulePredicate;
|
|
1106
|
+
DeploymentViewRulePredicateExpression: DeploymentViewRulePredicateExpression;
|
|
1107
|
+
DeploymentViewRuleStyle: DeploymentViewRuleStyle;
|
|
1108
|
+
DirectedRelationExpr: DirectedRelationExpr;
|
|
1109
|
+
DirectedRelationExpression: DirectedRelationExpression;
|
|
1110
|
+
DynamicView: DynamicView;
|
|
1111
|
+
DynamicViewBody: DynamicViewBody;
|
|
1112
|
+
DynamicViewGlobalPredicateRef: DynamicViewGlobalPredicateRef;
|
|
1113
|
+
DynamicViewIncludePredicate: DynamicViewIncludePredicate;
|
|
1114
|
+
DynamicViewParallelSteps: DynamicViewParallelSteps;
|
|
1115
|
+
DynamicViewPredicateIterator: DynamicViewPredicateIterator;
|
|
1116
|
+
DynamicViewRef: DynamicViewRef;
|
|
1117
|
+
DynamicViewRule: DynamicViewRule;
|
|
1118
|
+
DynamicViewStep: DynamicViewStep;
|
|
1119
|
+
Element: Element;
|
|
1120
|
+
ElementBody: ElementBody;
|
|
1121
|
+
ElementDescedantsExpression: ElementDescedantsExpression;
|
|
1122
|
+
ElementExpression: ElementExpression;
|
|
1123
|
+
ElementExpressionsIterator: ElementExpressionsIterator;
|
|
1124
|
+
ElementKind: ElementKind;
|
|
1125
|
+
ElementKindExpression: ElementKindExpression;
|
|
1126
|
+
ElementPredicate: ElementPredicate;
|
|
1127
|
+
ElementPredicateOrWhere: ElementPredicateOrWhere;
|
|
1128
|
+
ElementPredicateWhere: ElementPredicateWhere;
|
|
1129
|
+
ElementPredicateWith: ElementPredicateWith;
|
|
1130
|
+
ElementProperty: ElementProperty;
|
|
1131
|
+
ElementRef: ElementRef;
|
|
1132
|
+
ElementStringProperty: ElementStringProperty;
|
|
1133
|
+
ElementStyleProperty: ElementStyleProperty;
|
|
1134
|
+
ElementTagExpression: ElementTagExpression;
|
|
1135
|
+
ElementView: ElementView;
|
|
1136
|
+
ElementViewBody: ElementViewBody;
|
|
1137
|
+
ElementViewRef: ElementViewRef;
|
|
1138
|
+
ExcludePredicate: ExcludePredicate;
|
|
1139
|
+
ExpandElementExpression: ExpandElementExpression;
|
|
1140
|
+
ExpressionV2: ExpressionV2;
|
|
1141
|
+
ExtendElement: ExtendElement;
|
|
1142
|
+
ExtendElementBody: ExtendElementBody;
|
|
1143
|
+
FqnElementRef: FqnElementRef;
|
|
1144
|
+
FqnExpr: FqnExpr;
|
|
1145
|
+
FqnExpressions: FqnExpressions;
|
|
1146
|
+
FqnRef: FqnRef;
|
|
1147
|
+
FqnRefExpr: FqnRefExpr;
|
|
1148
|
+
FqnReferenceable: FqnReferenceable;
|
|
1149
|
+
GlobalDynamicPredicateGroup: GlobalDynamicPredicateGroup;
|
|
1150
|
+
GlobalPredicateGroup: GlobalPredicateGroup;
|
|
1151
|
+
GlobalStyle: GlobalStyle;
|
|
1152
|
+
GlobalStyleGroup: GlobalStyleGroup;
|
|
1153
|
+
GlobalStyleId: GlobalStyleId;
|
|
1154
|
+
Globals: Globals;
|
|
1155
|
+
IconProperty: IconProperty;
|
|
1156
|
+
InOutRelationExpr: InOutRelationExpr;
|
|
1157
|
+
InOutRelationExpression: InOutRelationExpression;
|
|
1158
|
+
IncludePredicate: IncludePredicate;
|
|
1159
|
+
IncomingRelationExpr: IncomingRelationExpr;
|
|
1160
|
+
IncomingRelationExpression: IncomingRelationExpression;
|
|
1161
|
+
LibIcon: LibIcon;
|
|
1162
|
+
LikeC4Grammar: LikeC4Grammar;
|
|
1163
|
+
LikeC4Lib: LikeC4Lib;
|
|
1164
|
+
LikeC4View: LikeC4View;
|
|
1165
|
+
LineProperty: LineProperty;
|
|
1166
|
+
LinkProperty: LinkProperty;
|
|
1167
|
+
MetadataAttribute: MetadataAttribute;
|
|
1168
|
+
MetadataBody: MetadataBody;
|
|
1169
|
+
MetadataProperty: MetadataProperty;
|
|
1170
|
+
Model: Model;
|
|
1171
|
+
ModelDeployments: ModelDeployments;
|
|
1172
|
+
ModelViews: ModelViews;
|
|
1173
|
+
NavigateToProperty: NavigateToProperty;
|
|
1174
|
+
NotationProperty: NotationProperty;
|
|
1175
|
+
NotesProperty: NotesProperty;
|
|
1176
|
+
OpacityProperty: OpacityProperty;
|
|
1177
|
+
OutgoingRelationExpr: OutgoingRelationExpr;
|
|
1178
|
+
OutgoingRelationExpression: OutgoingRelationExpression;
|
|
1179
|
+
Predicate: Predicate;
|
|
1180
|
+
Predicates: Predicates;
|
|
1181
|
+
Referenceable: Referenceable;
|
|
1182
|
+
Relation: Relation;
|
|
1183
|
+
RelationBody: RelationBody;
|
|
1184
|
+
RelationExpr: RelationExpr;
|
|
1185
|
+
RelationExpression: RelationExpression;
|
|
1186
|
+
RelationNavigateToProperty: RelationNavigateToProperty;
|
|
1187
|
+
RelationPredicate: RelationPredicate;
|
|
1188
|
+
RelationPredicateOrWhere: RelationPredicateOrWhere;
|
|
1189
|
+
RelationPredicateWhere: RelationPredicateWhere;
|
|
1190
|
+
RelationPredicateWith: RelationPredicateWith;
|
|
1191
|
+
RelationProperty: RelationProperty;
|
|
1192
|
+
RelationStringProperty: RelationStringProperty;
|
|
1193
|
+
RelationStyleProperty: RelationStyleProperty;
|
|
1194
|
+
RelationshipKind: RelationshipKind;
|
|
1195
|
+
RelationshipStyleProperty: RelationshipStyleProperty;
|
|
1196
|
+
ShapeProperty: ShapeProperty;
|
|
1197
|
+
SpecificationColor: SpecificationColor;
|
|
1198
|
+
SpecificationDeploymentNodeKind: SpecificationDeploymentNodeKind;
|
|
1199
|
+
SpecificationElementKind: SpecificationElementKind;
|
|
1200
|
+
SpecificationElementStringProperty: SpecificationElementStringProperty;
|
|
1201
|
+
SpecificationRelationshipKind: SpecificationRelationshipKind;
|
|
1202
|
+
SpecificationRelationshipStringProperty: SpecificationRelationshipStringProperty;
|
|
1203
|
+
SpecificationRule: SpecificationRule;
|
|
1204
|
+
SpecificationTag: SpecificationTag;
|
|
1205
|
+
StringProperty: StringProperty;
|
|
1206
|
+
StyleProperty: StyleProperty;
|
|
1207
|
+
Tag: Tag;
|
|
1208
|
+
Tags: Tags;
|
|
1209
|
+
ViewProperty: ViewProperty;
|
|
1210
|
+
ViewRef: ViewRef;
|
|
1211
|
+
ViewRule: ViewRule;
|
|
1212
|
+
ViewRuleAutoLayout: ViewRuleAutoLayout;
|
|
1213
|
+
ViewRuleGlobalPredicateRef: ViewRuleGlobalPredicateRef;
|
|
1214
|
+
ViewRuleGlobalStyle: ViewRuleGlobalStyle;
|
|
1215
|
+
ViewRuleGroup: ViewRuleGroup;
|
|
1216
|
+
ViewRulePredicate: ViewRulePredicate;
|
|
1217
|
+
ViewRuleStyle: ViewRuleStyle;
|
|
1218
|
+
ViewRuleStyleOrGlobalRef: ViewRuleStyleOrGlobalRef;
|
|
1219
|
+
ViewStringProperty: ViewStringProperty;
|
|
1220
|
+
WhereBinaryExpression: WhereBinaryExpression;
|
|
1221
|
+
WhereElement: WhereElement;
|
|
1222
|
+
WhereElementExpression: WhereElementExpression;
|
|
1223
|
+
WhereElementKind: WhereElementKind;
|
|
1224
|
+
WhereElementNegation: WhereElementNegation;
|
|
1225
|
+
WhereElementTag: WhereElementTag;
|
|
1226
|
+
WhereExpression: WhereExpression;
|
|
1227
|
+
WhereKindEqual: WhereKindEqual;
|
|
1228
|
+
WhereRelation: WhereRelation;
|
|
1229
|
+
WhereRelationExpression: WhereRelationExpression;
|
|
1230
|
+
WhereRelationKind: WhereRelationKind;
|
|
1231
|
+
WhereRelationNegation: WhereRelationNegation;
|
|
1232
|
+
WhereRelationTag: WhereRelationTag;
|
|
1233
|
+
WhereTagEqual: WhereTagEqual;
|
|
1234
|
+
WildcardExpression: WildcardExpression;
|
|
1235
|
+
};
|
|
1236
|
+
export declare class LikeC4AstReflection extends AbstractAstReflection {
|
|
1237
|
+
getAllTypes(): string[];
|
|
1238
|
+
protected computeIsSubtype(subtype: string, supertype: string): boolean;
|
|
1239
|
+
getReferenceType(refInfo: ReferenceInfo): string;
|
|
1240
|
+
getTypeMetaData(type: string): TypeMetaData;
|
|
1241
|
+
}
|
|
1242
|
+
export declare const reflection: LikeC4AstReflection;
|