Files

9 lines
121 B
TypeScript

export default interface Media {
id: string;
url: string;
path: string;
alt: string;
size: number;
type: string;
}