Repository URL to install this package:
|
Version:
2.2.0 ▾
|
export interface LabelValue {
label: string
value: any
}
export interface DetailedListProps {
// will depreciate specifications
specifications?: Array<LabelValue>
list?: Array<LabelValue>
qa?: string
wording?: {
heading: string
empty: string
}
renderSpecificationList?: DetailedRenderProp
renderSpecificationHeading?: DetailedRenderProp
renderSpecificationItem?: DetailedRenderProp
renderSpecificationWrap?: DetailedRenderProp
}
export interface DetailedItem extends LabelValue {
title?: string
}
export interface DetailedRenderProp extends Function {
(props: DetailedListProps): any
}