-
-
Save Daltonic/64fb31bf3b19668a17d14f59e087a77e to your computer and use it in GitHub Desktop.
Sia VidTv Interfaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// backend/src/utils/interfaces.ts | |
export interface FileUpload { | |
name: string; | |
data: Buffer; | |
size: number; | |
encoding: string; | |
tempFilePath: string; | |
truncated: boolean; | |
mimetype: string; | |
md5: string; | |
mv: Function; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment