(options?: Multipart_.withLimits.Options)
| 806 | * @since 4.0.0 |
| 807 | */ |
| 808 | export function asMultipartStream(options?: Multipart_.withLimits.Options) { |
| 809 | return <S extends Schema.Top>(self: S): asMultipartStream<S> => |
| 810 | self.pipe(Schema.brand(MultipartStreamTypeId)).annotate({ |
| 811 | "~httpApiEncoding": { |
| 812 | _tag: "Multipart", |
| 813 | mode: "stream", |
| 814 | contentType: defaultContentType("Multipart"), |
| 815 | limits: options |
| 816 | } |
| 817 | }) |
| 818 | } |
| 819 | |
| 820 | function asNonMultipartEncoding<S extends Schema.Top>(self: S, options: { |
| 821 | readonly _tag: "Json" | "FormUrlEncoded" | "Uint8Array" | "Text" |
nothing calls this directly
no test coverage detected