export interface IEntityWithTimestamp { updatedTime: Date; } export interface IEntityWithId { id: string; } export interface ICoordinates { latitude: number; longitude: number; }