telegram-sdk-adv
Version:
Telegram SDK for Advertisers
8 lines (7 loc) • 334 B
TypeScript
export declare class APIError extends Error {
code: string;
details?: any;
constructor(message: string, code: string, details?: any);
}
export declare function makeRequest<T>(url: string, options: RequestInit | undefined, apiKey: string): Promise<T>;
export declare const DEFAULT_BASE_URL = "https://cms.datplatform.com";