v8-ui-components
Version:
A component lib for v8 storefront apps
19 lines (18 loc) • 854 B
TypeScript
import * as React from "react";
import { ISmallCarouselChild, ISmallCarouselComponentProps, ISmallCarouselState } from "./SmallCarousel.interfaces";
declare class SmallCarousel extends React.Component<ISmallCarouselComponentProps, ISmallCarouselState> {
static contextType: React.Context<import("../../../Context/interfaces").IContextObject>;
static defaultProps: {
cmsPosition: {
rowIndex: number;
columnIndex: number;
};
};
constructor(props: ISmallCarouselComponentProps);
private SetViewport;
componentDidMount(): void;
GetComponent: (element: ISmallCarouselChild, location: number, passedDownProps: any) => JSX.Element;
render(): JSX.Element;
}
export declare const SmallCarouselComponentTestId = "SmallCarouselComponentTestId";
export default SmallCarousel;