Repository URL to install this package:
|
Version:
3.0.1 ▾
|
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;
}