(
this: Handlers<any, any, any, HttpApiEndpoint.HttpApiEndpoint.Any>,
name: string,
handler: HttpApiEndpoint.HttpApiEndpoint.Handler<any, any, any>,
options?: { readonly uninterruptible?: boolean | undefined } | undefined
)
| 397 | return pipeArguments(this, arguments) |
| 398 | }, |
| 399 | handle( |
| 400 | this: Handlers<any, any, any, HttpApiEndpoint.HttpApiEndpoint.Any>, |
| 401 | name: string, |
| 402 | handler: HttpApiEndpoint.HttpApiEndpoint.Handler<any, any, any>, |
| 403 | options?: { readonly uninterruptible?: boolean | undefined } | undefined |
| 404 | ) { |
| 405 | const endpoint = this.group.endpoints[name] |
| 406 | return makeHandlers({ |
| 407 | group: this.group, |
| 408 | handlers: Chunk.append(this.handlers, { |
| 409 | endpoint, |
| 410 | handler, |
| 411 | withFullRequest: false, |
| 412 | uninterruptible: options?.uninterruptible ?? false |
| 413 | }) as any |
| 414 | }) |
| 415 | }, |
| 416 | handleRaw( |
| 417 | this: Handlers<any, any, any, HttpApiEndpoint.HttpApiEndpoint.Any>, |
| 418 | name: string, |
nothing calls this directly
no test coverage detected
searching dependent graphs…