7 lines
83 B
TypeScript
7 lines
83 B
TypeScript
interface MediaFile {
|
|
src: string;
|
|
thumb: string;
|
|
}
|
|
|
|
export default MediaFile;
|