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:
import { ReactNode } from 'react'

export interface SubscriptionItemInfo {}

export type SubscriptionItemList = Array<SubscriptionItemInfo>

export interface SusbcriptionItemRenderProp extends Function {
  (props?: SubscriptionItemInfo, state?: SubscriptionListState): ReactNode
}

export interface SubscriptionListRenderProp extends Function {
  (props?: SubscriptionListProps, state?: SubscriptionListState): ReactNode
}

export interface SubscriptionListProps {
  className?: string
  list?: SubscriptionItemList
  //
  renderHeader?: SubscriptionListRenderProp
  renderItem?: SusbcriptionItemRenderProp
  renderList?: SubscriptionListRenderProp
  renderWrapper?: SubscriptionListRenderProp
}

export interface SubscriptionListState {}