From 213998feb9191e503609f7ccb04c75a853a5e0cd Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Thu, 29 Jun 2023 11:24:52 +0300 Subject: [PATCH] chore: formatting --- types/express-multipart-file-parser/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/express-multipart-file-parser/index.d.ts b/types/express-multipart-file-parser/index.d.ts index fef3de52bd..b050dc14f1 100644 --- a/types/express-multipart-file-parser/index.d.ts +++ b/types/express-multipart-file-parser/index.d.ts @@ -11,12 +11,16 @@ import type { Options as RawBodyOptions } from 'raw-body'; interface UploadedFile { /** Field name specified in the form */ fieldname: string; + /** Name of the file on the user's computer */ originalname: string; + /** Encoding type of the file */ encoding: string; + /** Mime type of the file */ mimetype: string; + /** Contents of the file */ buffer: Buffer; }