// works
const route = Http.router.get(
"/foo/:id",
Http.router.schemaParams(Schema.struct({ id: Schema.string }))
)
// doesn't work
Http.client.get("/foo/:id").pipe(
Http.client.setUrlParam("id", 123),
myClient,
)
// works
const route = Http.router.get(
"/foo/:id",
Http.router.schemaParams(Schema.struct({ id: Schema.string }))
)
// doesn't work
Http.client.get("/foo/:id").pipe(
Http.client.setUrlParam("id", 123),
myClient,
)