Repository URL to install this package:
|
Version:
0.14.1 ▾
|
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
}
// import { array, string } from 'uxui-modules/view-container/types'
// export const propTypes = {
// specifications: array,
// qa: string,
// }