GetTypes<T>: {
    [P in keyof T]: GetValueType<T[P]> | null
}

Type Parameters