mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-26 15:16:21 +01:00
8 lines
340 B
TypeScript
8 lines
340 B
TypeScript
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface CarouselItemProps extends BsPrefixPropsWithChildren {
|
|
interval?: number;
|
|
}
|
|
declare type CarouselItem = BsPrefixRefForwardingComponent<'div', CarouselItemProps>;
|
|
declare const CarouselItem: CarouselItem;
|
|
export default CarouselItem;
|