tenor-gif-api
Version:
A simple and easy-to-use wrapper for the Tenor API, enabling quick and effective integrations.
20 lines (19 loc) • 792 B
TypeScript
import { SearchService } from './SearchService';
import { FeaturedService } from './FeaturedService';
import { SuggestionsService } from './SuggestionsService';
import { AutocompleteService } from './AutocompleteService';
import { TrendingService } from './TrendingService';
import { RegisterShareService } from './RegisterShareService';
import { PostsService } from './PostsService';
import { CategoryService } from './CategoryService';
export declare class TenorClient {
search: SearchService;
featured: FeaturedService;
categories: CategoryService;
suggestions: SuggestionsService;
autocomplete: AutocompleteService;
trending: TrendingService;
registerShare: RegisterShareService;
posts: PostsService;
constructor(apiKey: string, clientKey?: string);
}