Having this example:
interface Event {
title:string;
description:string;
fromDate: Date;
toDate: Date;
location: {
name: string;
lat: number;
long: number;
}
}
Using a type something like PropertiesToString<Event>
I expect to return this type:
{
title:string;
description:string;
fromDate: string;
toDate: string;
location: {
name: string;
lat: string;
long: string;
}
}
The question is how do I create the PropertiesToString<T>
type?
I've managed to create something that works but not for nested object. If i have an nested object instead of modifing the object properties to string, it sets the object to string.
This is my version which doesn't work for nested objects, because instead of changing the type of location properties to string
, it changes the type for location itself to string
:
export type RequestBody<T> = {
[P in keyof T]: string;
};