use Partial in nested property with typescript

Say I have a type like this; interface State { one: string, two: { three: { four: string }, five: string } } I make state Partial like this Partial<State> But how c...