@griddo/cx 10.6.5 → 10.6.7

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.
@@ -0,0 +1,6 @@
1
+ import type { Artifacts, PlaceholderPath } from "../types/global";
2
+ /**
3
+ * Returns the artifacts of CX.
4
+ */
5
+ declare function getCxArtifacts(paths: Record<PlaceholderPath, string>): Artifacts;
6
+ export default getCxArtifacts;
@@ -0,0 +1,6 @@
1
+ import type { Artifacts, PlaceholderPath } from "../types/global";
2
+ /**
3
+ * Returns the artifacts of Gatsby.
4
+ */
5
+ declare function gatsbyArtifacts(paths: Record<PlaceholderPath, string>): Artifacts;
6
+ export default gatsbyArtifacts;
@@ -0,0 +1,15 @@
1
+ import type { Adapters } from "../adapters";
2
+ import type { PlaceholderPath } from "../types/global";
3
+ /**
4
+ * Returns the artifacts of a specific adapter along with those of CX.
5
+ *
6
+ * @param adapter - The adapter for which to get the artifacts.
7
+ * @param options.cxPaths - The cx-paths.
8
+ */
9
+ declare function getArtifacts(adapter: Adapters, options: {
10
+ cxPaths: Record<PlaceholderPath, string>;
11
+ }): {
12
+ cx: import("../types/global").Artifacts;
13
+ ssg: import("../types/global").Artifacts;
14
+ };
15
+ export { getArtifacts };