diff options
Diffstat (limited to 'multipart/formfile.ts')
-rw-r--r-- | multipart/formfile.ts | 4 |
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; } |