React UI元件開發心得

kyooo0發表於2020-12-31

//獲得button所有屬性
type NativeButtonProps = BaseButtonProps & React.ButtonHTMLAttributes
type AnchorButtonProps = BaseButtonProps & React.AnchorHTMLAttributes
//partial<> 可選化
export type ButtonProps = Partial<NativeButtonProps & AnchorButtonProps>

使用partial可選化所有屬性
聯合型別結合自定義屬性和原有屬性

相關文章