Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MandarineMvc.MultipartFormData

import type { MandarineMvc } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mvc-framework/mandarine-mvc.ns.ts"; 

const { MultipartFormData } = MandarineMvc;

Interface of object returned when using decorator @RequestBody() in request which data is of Multipart/form-data

interface MultipartFormData {
fields?: {
[prop: string]: any;
}
;
files?: {
[filename: string]: Uint8Array | Uint16Array | Uint32Array | BigUint64Array;
}
;
}

§Properties

§
fields?: {
[prop: string]: any;
}
[src]
§
files?: {
[filename: string]: Uint8Array | Uint16Array | Uint32Array | BigUint64Array;
}
[src]