export interface PhotoWallMedia { source: string; isVideo: boolean; alt?: string; } export interface PhotoWallMediaWithId extends PhotoWallMedia { id: number; }