When I store in the firebase, all the data is stored as strings even if I define them as date, time, number.
interface Event{
title:string,
date:Date,
startTime:Time,
endTime:Time,
}
event= {} as Event
this.firebase.collection("Users").doc(this.currUID).collection("Events").add(this.event)