(options?: Multipart_.withLimits.Options)
| 762 | * @since 4.0.0 |
| 763 | */ |
| 764 | export function asMultipart(options?: Multipart_.withLimits.Options) { |
| 765 | return <S extends Schema.Top>(self: S): asMultipart<S> => |
| 766 | self.pipe(Schema.brand(MultipartTypeId)).annotate({ |
| 767 | "~httpApiEncoding": { |
| 768 | _tag: "Multipart", |
| 769 | mode: "buffered", |
| 770 | contentType: defaultContentType("Multipart"), |
| 771 | limits: options |
| 772 | } |
| 773 | }) |
| 774 | } |
| 775 | |
| 776 | /** |
| 777 | * Runtime brand key used to mark schemas as streaming multipart payloads. |
nothing calls this directly
no test coverage detected