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