Let's say I have an interface like this one
interface Theme {
a: {
b?: {
c: CustomType;
}
}
...
}
how do I override this theme interface into a new one changing b to always defined?? (Removing ?
) obviously I'd like to keep everything else the same.
EDIT: I don't have access to CustomType