ant design里的typescript(持续更新)

257 阅读1分钟

前言:我觉得antd里面有很多值得学习的typescript技巧,一起看看吧

1、typeof ButtonTypes[number];是啥type?

const ButtonTypes = tuple('default', 'primary', 'ghost', 'dashed', 'link', 'text');
export type ButtonType = typeof ButtonTypes[number];

答案:

image.png