UNPKG

@oystehr/sdk

Version:

Oystehr SDK

13 lines (12 loc) 276 B
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; }