UNPKG

@wistia/wistia-player

Version:

An embeddable wistia-player web component and React wrapper to add responsive, lightweight, and SEO-friendly videos to your site.

13 lines 1.03 kB
import { CarouselData } from '../types/carousel.ts'; import { MediaData } from '../types/player-api-types.ts'; import { LiveStreamEventData } from '../types/live-stream-event.ts'; export declare const getMediaDataFromCache: (hashedId: string) => MediaData | null | undefined; export declare const cacheMediaData: (hashedId: string, data: MediaData) => void; export declare const uncacheMediaData: (hashedId: string) => void; export declare const cacheLiveStreamEventData: (hashedId: string, data: LiveStreamEventData) => void; export declare const uncacheLiveStreamEventData: (hashedId: string) => void; export declare const getLiveStreamEventDataFromCache: (hashedId: string) => LiveStreamEventData | null | undefined; export declare const getCarouselDataFromCache: (hashedId: string) => CarouselData | null | undefined; export declare const cacheCarouselData: (hashedId: string, data: CarouselData) => void; export declare const uncacheCarouselData: (hashedId: string) => void; //# sourceMappingURL=remote-data-cache.d.ts.map