Javascript – Typescript Interface string is accepting a number from a fetch
I am loading data from a fetch in TS and attempting to set a value which should be a string but instead is a number. The interface export default interface IPost { id: number; title: string; content: string; imageUrl: string;…