Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
/// <reference types="react" />
import { MediaCarouselState } from './state';
import { MediaCarouselProps } from './typings';
declare function initMediaCarouselState(): MediaCarouselState;
declare function toMediaCarouselState(props: MediaCarouselProps): import("./typings").MediaCarouselStateType;
/**
 * @todo make common in @skava/state
 *
 */
declare const getDeviceType: () => "desktop" | "tablet" | "mobile";
declare const getValidNumber: (val: import("react").ReactText) => number | undefined;
declare const getDeviceColSpan: (props: MediaCarouselProps) => any;
declare const getCarouselPanelWidth: (props: MediaCarouselProps) => number;
export { getDeviceColSpan, getValidNumber, getDeviceType, getCarouselPanelWidth, toMediaCarouselState, initMediaCarouselState, };