| 2 | |
| 3 | declare namespace ServerlessHttp { |
| 4 | export interface FrameworkApplication { |
| 5 | callback: Function; |
| 6 | handle: Function; |
| 7 | router: { |
| 8 | route: Function; |
| 9 | } |
| 10 | _core: { |
| 11 | _dispatch: Function; |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Handler-compatible function, application or plain http server. |
nothing calls this directly
no outgoing calls
no test coverage detected