Skip to content

Instantly share code, notes, and snippets.

@Daltonic
Created August 21, 2024 13:43
Show Gist options
  • Save Daltonic/64fb31bf3b19668a17d14f59e087a77e to your computer and use it in GitHub Desktop.
Save Daltonic/64fb31bf3b19668a17d14f59e087a77e to your computer and use it in GitHub Desktop.
Sia VidTv Interfaces
// 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