Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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,
// }