| 1 | export interface InvocationNext { |
| 2 | id: string; |
| 3 | cold: boolean; |
| 4 | input?: any; |
| 5 | output?: any; |
| 6 | report?: { |
| 7 | duration: number; |
| 8 | size: number; |
| 9 | memory: number; |
| 10 | xray?: string; |
| 11 | init?: number; |
| 12 | }; |
| 13 | start: number; |
| 14 | end?: number; |
| 15 | logs: Log[]; |
| 16 | } |
| 17 | |
| 18 | export interface Log { |
| 19 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected