Skip to content

Commit 9a96a36

Browse files
committed
chore(function): add API.md changes
1 parent 1d5d3ee commit 9a96a36

File tree

1 file changed

+2
-2
lines changed
  • packages/backend-function

1 file changed

+2
-2
lines changed

packages/backend-function/API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ export type FunctionProps = {
2020
timeoutSeconds?: number;
2121
memoryMB?: number;
2222
environment?: Record<string, string | BackendSecret>;
23-
runtime?: NodeVersion;
23+
runtime?: RuntimeType;
2424
};
2525

2626
// @public (undocumented)
27-
export type NodeVersion = 16 | 18 | 20;
27+
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";
2828

2929
// (No @packageDocumentation comment for this package)
3030

0 commit comments

Comments
 (0)