UNPKG

react-carousel-query

Version:

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

10 lines (7 loc) 350 B
// @flow // Note: we define properties with JSdoc since documentation.js doesn't recognize // exported types yet. See https://github.com/documentationjs/documentation/issues/680 /** * @property {undefined, null, 'active', 'focus', 'hover'} InteractionState */ export type InteractionState = typeof undefined | null | 'active' | 'focus' | 'hover'