TypeScript常用类型工具包 推导所有Object的可选值 12345const Fruits = { APPLE = 'apple', ORANGE = 'orange'}type Fruits = typeof Fruits[keyof typeof Fruits]; // apple, orange