15 lines
309 B
TypeScript
15 lines
309 B
TypeScript
import { FileTypeResult } from "file-type/core";
|
|
|
|
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;
|
|
}
|