mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-16 10:34:34 +00:00
As is documented on multer project (https://github.com/expressjs/multer): // req.files is an object (String -> Array) where fieldname is the key, and the value is array of files // // e.g. // req.files['avatar'][0] -> File // req.files['gallery'] -> Array // // req.body will contain the text fields, if there were any