Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit a152ae7

Browse files
committed
feat: update types to include values from oak multipart
1 parent a196ff5 commit a152ae7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

types.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,9 @@ export interface FormDataBody {
122122
* The form file data
123123
*/
124124
export interface FormFile {
125-
filename: string
126-
contentType: string
125+
name: string
127126
content: Uint8Array
128-
size: number
127+
contentType: string
128+
filename: string
129+
originalName: string
129130
}

0 commit comments

Comments
 (0)