cdk-insights 1.39.0 → 1.41.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.
@@ -1 +1,11 @@
1
+ /**
2
+ * Returns the names of installed `@aws-solutions-constructs/aws-*` packages
3
+ * (used by the Solutions Constructs rule category to detect L3 patterns in
4
+ * synthesized templates).
5
+ *
6
+ * `@aws-solutions-constructs/*` is declared as optional in cdk-insights'
7
+ * `peerDependenciesMeta`, so users who don't use Solutions Constructs won't
8
+ * have them installed. In that case we return `[]` and the rule category
9
+ * silently no-ops — every other rule still runs.
10
+ */
1
11
  export declare function listAvailableConstructs(): string[];