UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

7 lines (6 loc) 400 B
import { Formatter } from './Formatter'; import { CodeFrameFormatterOptions } from './CodeframeFormatter'; declare type FormatterType = undefined | 'default' | 'codeframe' | Formatter; declare type FormatterOptions = CodeFrameFormatterOptions; declare function createFormatter(type?: FormatterType, options?: FormatterOptions): Formatter; export { createFormatter, FormatterType, FormatterOptions };