@likec4/language-server 1.28.0 → 1.29.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.
@@ -573,7 +573,7 @@ export interface GlobalStyle extends AstNode {
573
573
  readonly $type: 'GlobalStyle';
574
574
  id: GlobalStyleId;
575
575
  props: Array<NotationProperty | StyleProperty>;
576
- target: FqnExpressions;
576
+ targets: FqnExpressions;
577
577
  }
578
578
  export declare const GlobalStyle = "GlobalStyle";
579
579
  export declare function isGlobalStyle(item: unknown): item is GlobalStyle;
@@ -1012,7 +1012,7 @@ export interface ViewRuleStyle extends AstNode {
1012
1012
  readonly $container: DynamicViewBody | ElementViewBody | GlobalStyleGroup | ModelViews;
1013
1013
  readonly $type: 'ViewRuleStyle';
1014
1014
  props: Array<NotationProperty | StyleProperty>;
1015
- target: FqnExpressions;
1015
+ targets: FqnExpressions;
1016
1016
  }
1017
1017
  export declare const ViewRuleStyle = "ViewRuleStyle";
1018
1018
  export declare function isViewRuleStyle(item: unknown): item is ViewRuleStyle;
@@ -1363,7 +1363,7 @@ export class LikeC4AstReflection extends AbstractAstReflection {
1363
1363
  properties: [
1364
1364
  { name: "id" },
1365
1365
  { name: "props", defaultValue: [] },
1366
- { name: "target" }
1366
+ { name: "targets" }
1367
1367
  ]
1368
1368
  };
1369
1369
  }
@@ -1857,7 +1857,7 @@ export class LikeC4AstReflection extends AbstractAstReflection {
1857
1857
  name: ViewRuleStyle,
1858
1858
  properties: [
1859
1859
  { name: "props", defaultValue: [] },
1860
- { name: "target" }
1860
+ { name: "targets" }
1861
1861
  ]
1862
1862
  };
1863
1863
  }