We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 645d234 commit f3ed7c2Copy full SHA for f3ed7c2
1 file changed
packages/core/src/v3/build/runtime.ts
@@ -22,6 +22,12 @@ export function deprecatedRuntimeReplacement(runtime: DeprecatedConfigRuntime):
22
}
23
24
25
+/** @deprecated Renamed to {@link DeprecatedConfigRuntime}. */
26
+export type ExperimentalConfigRuntime = DeprecatedConfigRuntime;
27
+
28
+/** @deprecated Renamed to {@link isDeprecatedConfigRuntime}. */
29
+export const isExperimentalConfigRuntime = isDeprecatedConfigRuntime;
30
31
export function resolveBuildRuntime(runtime: unknown): BuildRuntime {
32
const parsedRuntime = ConfigRuntime.safeParse(runtime);
33
0 commit comments