( functionName: string, handler: CloudEventFunction<T> | CloudEventFunctionWithCallback<T>, )
| 94 | * @public |
| 95 | */ |
| 96 | export const cloudEvent = <T = unknown>( |
| 97 | functionName: string, |
| 98 | handler: CloudEventFunction<T> | CloudEventFunctionWithCallback<T>, |
| 99 | ): void => { |
| 100 | register(functionName, 'cloudevent', handler); |
| 101 | }; |
nothing calls this directly
no test coverage detected