(prefix: string)
| 28 | const api = composePluginApi([openApiHttpPlugin()] as const); |
| 29 | |
| 30 | const unique = (prefix: string) => `${prefix}_${randomBytes(4).toString("hex")}`; |
| 31 | |
| 32 | /** Narrow a `start` result to the redirect arm, failing with what came back. */ |
| 33 | const redirected = <R extends { status: string }>( |
no test coverage detected