* Add the implementation for an `HttpApiEndpoint` to a `Handlers` group. * This version of the api allows you to return the full response object.
(
name: Name,
handler: HttpApiEndpoint.HttpApiEndpoint.HandlerRawWithName<Endpoints, Name, E, R1>,
options?: { readonly uninterruptible?: boolean | undefined } | undefined
)
| 259 | * This version of the api allows you to return the full response object. |
| 260 | */ |
| 261 | handleRaw<Name extends HttpApiEndpoint.HttpApiEndpoint.Name<Endpoints>, R1>( |
| 262 | name: Name, |
| 263 | handler: HttpApiEndpoint.HttpApiEndpoint.HandlerRawWithName<Endpoints, Name, E, R1>, |
| 264 | options?: { readonly uninterruptible?: boolean | undefined } | undefined |