mobilizon/js/src/types/media.model.ts
Thomas Citharel c9457fe0d3
Track usage of media files and add a job to clean them
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-11-26 17:53:33 +01:00

13 lines
175 B
TypeScript

export interface IMedia {
id: string;
url: string;
name: string;
alt: string;
}
export interface IMediaUpload {
file: File;
name: string;
alt: string | null;
}