Send back only new files on upload.

This commit is contained in:
Patrick Fic
2022-05-04 17:37:32 -07:00
parent b7be304520
commit 05a8c90f03
9 changed files with 6442 additions and 78 deletions

View File

@@ -1,6 +1,10 @@
import internal from "stream";
interface MediaFile {
src: string;
thumb: string;
thumbnail: string;
thumbnailHeight: number;
thumbnailWidth: number;
}
export default MediaFile;