import { MultipartWriter } from "https://deno.land/std@0.94.0/mime/multipart.ts";
Writer for creating multipart/form-data
Methods
private
createPart(headers: Headers): Deno.Writerprivate
flush()close()
Close writer. No additional data can be written to stream
createFormField(field: string): Deno.Writer
createFormFile(field: string, filename: string): Deno.Writer
formDataContentType(): string
writeField(field: string, value: string)
writeFile()
field: string,
filename: string,
file: Deno.Reader,