57. implement ObjectPaths<O>

TypeScript

  -通过 / -执行

Implement ObjectPaths<O> to return all valid paths to properties.

type Obj = {  a: {    b: {      c: 1,      d: 2    },    e: 1  },  f: 3}type A = ObjectPaths<Obj>// 'a.b.c' | 'a.b.d' | 'a.e' | 'f'

争取10分钟以内搞定这个问题