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 1d5d3ee commit 9a96a36Copy full SHA for 9a96a36
packages/backend-function/API.md
@@ -20,11 +20,11 @@ export type FunctionProps = {
20
timeoutSeconds?: number;
21
memoryMB?: number;
22
environment?: Record<string, string | BackendSecret>;
23
- runtime?: NodeVersion;
+ runtime?: RuntimeType;
24
};
25
26
// @public (undocumented)
27
-export type NodeVersion = 16 | 18 | 20;
+export type RuntimeType = "GO_1_X_PROVIDED_AL2023" | "NODEJS_16_X" | "NODEJS_18_X" | "NODEJS_20_X" | "PYTHON_3_8" | "PYTHON_3_9" | "PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12";
28
29
// (No @packageDocumentation comment for this package)
30
0 commit comments