(input: unknown)
| 356 | * @since 4.0.0 |
| 357 | */ |
| 358 | export const ResponseDefectEncoded = (input: unknown): ResponseDefectEncoded => ({ |
| 359 | _tag: "Defect", |
| 360 | defect: encodeDefect(input) |
| 361 | }) |
| 362 | |
| 363 | /** |
| 364 | * The decoded server defect message for a client connection. |
no outgoing calls
no test coverage detected