UNPKG

react-hadiths

Version:

A Simple SDK to use the Hadiths API effectively and efficiently

12 lines (11 loc) 274 B
type Config = { apiKey: string; baseUrl?: string; }; export declare abstract class Base { private apiKey; private baseUrl; constructor(config: Config); protected invoke<T>(endpoint: string, options?: RequestInit): Promise<T>; } export {};