Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import { ReactNode } from 'react'
import { MediaCarouselStateType } from '../typings'
export interface CarouselBulletRenderProp extends Function {
(props: CarouselBulletProps, state?: MediaCarouselStateType): ReactNode
}
export interface CarouselBulletProps {
bulletSize: number | string
bulletColor: string
hasBullets?: boolean
index?: number
state?: MediaCarouselStateType
renderBulletList?: CarouselBulletRenderProp
renderBulletItem?: CarouselBulletRenderProp
}