This commit is contained in:
Allan Carr
2025-07-13 00:17:08 -07:00
parent 231130267f
commit 7f782d5a64
19 changed files with 2564 additions and 1416 deletions

View File

@@ -1,11 +1,14 @@
import internal from "stream";
import { FileTypeResult } from "file-type/core";
interface MediaFile {
export default interface MediaFile {
type?: FileTypeResult | undefined;
size?: number;
src: string;
filename: string;
name: string;
path: string;
thumbnailPath: string;
thumbnail: string;
thumbnailHeight: number;
thumbnailWidth: number;
filename: string;
}
export default MediaFile;