Good Morning,
I tried adding a new created object from this class:
export class Sponsor implements ISponsor { title: string; description?: s
You can also use Object.assign({}, sponsor)
so in yor case it would be
this.collection.doc(sponsor.id).set(Object.assign({}, sponsor));