UNPKG

react-carousel-query

Version:

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

8 lines (7 loc) 263 B
export type FanOutUnsubscribe = () => void; export type FanOutListener<D> = (data: D) => void; export declare class FanOut<D> { readonly listeners: Set<FanOutListener<D>>; emit(data: D): void; listen(listener: FanOutListener<D>): FanOutUnsubscribe; }