export type ButtonType = 'primary' | 'ghost' | 'dashed' | 'danger';第一是type是什么意思第二是 |是什么意思 以前只看过||
这应该是定义了一个枚举,type说明是枚举,后面的分割符是表示这个枚举的全部值。