UNPKG
@oystehr/sdk
Version:
latest (4.3.14)
next (4.3.14)
4.3.14
4.3.13
4.3.12
4.3.11
4.3.10
4.3.9
4.3.8
4.3.7
4.3.6
4.3.5
4.3.4
4.3.3
4.3.2
4.3.1
4.2.6
4.2.5
4.2.4
4.2.3
4.2.1
4.2.0
4.1.10
4.1.9
4.1.8
4.1.7
4.1.6
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.0.0
4.0.0-alpha.6
4.0.0-alpha.4
4.0.0-alpha.3
4.0.0-alpha.2
4.0.0-alpha.1
4.0.0-alpha.0
3.0.16
3.0.15
3.0.14
3.0.13
3.0.12
3.0.11
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
Oystehr SDK
@oystehr/sdk
/
dist
/
cjs
/
resources
/
types
/
ZambdaExecuteResult.d.ts
13 lines
(12 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
interface
ZambdaExecuteResult
{
/** * HTTP status code from the Zambda Function */
status
:
number
;
/** * JSON response payload from the Zambda Function */
output
: { [
k
:
string
]:
any
; } |
any
[] |
string
|
number
|
null
; }