Repository URL to install this package:
|
Version:
2.0.18 ▾
|
@skava/ui-presets
/
src
/
abstractions
/
Subscription
/
UpcomingDeliveries
/
SubscriptionList
/
typings.ts
|
|---|
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 {}