Only support to use of "index". ``` type t = { a: { c: string }, b: string } type a1 = t.a; //error type a2 = t['a']; //ok ``` I must operate many times when I want rename "t['a']". How to make it more convenient?