12 lines
192 B
TypeScript
12 lines
192 B
TypeScript
import internal from "stream";
|
|
|
|
interface MediaFile {
|
|
src: string;
|
|
thumbnail: string;
|
|
thumbnailHeight: number;
|
|
thumbnailWidth: number;
|
|
filename: string;
|
|
}
|
|
|
|
export default MediaFile;
|