Looking at the structure of my base type:
type MyForm = {
email: string;
password: string;
}
I'm wondering if there's a possibility to change MyForm into this optional version:
type MyFormOptional = {
email?: string | null;
password?: string | null;
}
Can I achieve this transformation using only MyForm as a starting point?