(status: number, code: number, message: string)
| 34 | * `access-control-allow-origin: *`, byte-identical to the prior local copy. |
| 35 | */ |
| 36 | export const jsonRpcWebResponse = (status: number, code: number, message: string) => |
| 37 | jsonRpcErrorBody(status, code, message); |
| 38 | |
| 39 | export const unauthorized = (auth: UnauthorizedAuth, protectedResourceMetadataUrl: string) => |
| 40 | HttpServerResponse.jsonUnsafe( |
nothing calls this directly
no test coverage detected