mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
|
import * as React from 'react';
|
||
|
import { CSSModule } from './index';
|
||
|
|
||
|
export interface CarouselCaptionProps
|
||
|
extends React.HTMLAttributes<HTMLElement> {
|
||
|
[key: string]: any;
|
||
|
captionHeader?: React.ReactNode;
|
||
|
captionText: React.ReactNode;
|
||
|
cssModule?: CSSModule;
|
||
|
}
|
||
|
|
||
|
declare class CarouselCaption extends React.Component<CarouselCaptionProps> {}
|
||
|
export default CarouselCaption;
|