chore: formatting

This commit is contained in:
Chen Asraf
2023-06-29 11:24:52 +03:00
parent 0f7e380b99
commit 213998feb9

View File

@@ -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;
}