summaryrefslogtreecommitdiff
path: root/multipart/formfile.ts
diff options
context:
space:
mode:
Diffstat (limited to 'multipart/formfile.ts')
-rw-r--r--multipart/formfile.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/multipart/formfile.ts b/multipart/formfile.ts
index 8bbdcffbc..592f4e529 100644
--- a/multipart/formfile.ts
+++ b/multipart/formfile.ts
@@ -10,7 +10,9 @@ export interface FormFile {
size: number;
/** in-memory content of file. Either content or tempfile is set */
content?: Uint8Array;
- /** temporal file path. Set if file size is bigger than specified max-memory size at reading form */
+ /** temporal file path.
+ * Set if file size is bigger than specified max-memory size at reading form
+ * */
tempfile?: string;
}