(schema: Extract<HttpApiSchema.StreamSchema, { readonly _tag: "StreamSse" }>)
| 980 | } |
| 981 | |
| 982 | function streamDataSchema(schema: Extract<HttpApiSchema.StreamSchema, { readonly _tag: "StreamSse" }>) { |
| 983 | return Schema.make(streamDataAst(Schema.toType(schema.events).ast)) |
| 984 | } |
| 985 | |
| 986 | function streamEncodedDataSchema(schema: Extract<HttpApiSchema.StreamSchema, { readonly _tag: "StreamSse" }>) { |
| 987 | const data = streamDataAst(schema.events.ast) |
no test coverage detected