UNPKG

@giphy/react-native-sdk

Version:
17 lines 640 B
import type { GiphyMediaType } from './giphyMediaType'; import type { GiphyRating } from './giphyRating'; export declare const GiphyContentRequestType: { readonly Trending: "trending"; readonly Search: "search"; readonly Emoji: "emoji"; readonly Recents: "recents"; readonly Animate: "animate"; }; export type GiphyContentRequestType = (typeof GiphyContentRequestType)[keyof typeof GiphyContentRequestType]; export type GiphyContentRequest = { mediaType: GiphyMediaType; rating?: GiphyRating; requestType: GiphyContentRequestType; searchQuery: string; }; //# sourceMappingURL=giphyContentRequest.d.ts.map