0
我有一些我想添加到其他元素的JSX屬性。在多個html元素中包含JSX屬性
例attribtes我需要包括:
class?: string;
id?: string;
style?: string;
實例元素:
namespace JSX {
interface IntrinsicElements {
element1: { att1: string; }
element2: { att2: string; }
element3: { att3: string; }
}
}
也應做什麼樣:
namespace JSX {
interface IntrinsicElements {
element1: { att1: string; class?: string; id?: string; style?: string; }
element2: { att2: string; class?: string; id?: string; style?: string; }
element3: { att3: string; class?: string; id?: string; style?: string; }
}
}
有沒有辦法實現這個不需要重複的代碼?