Create a Client.
const client = createClient({ token: "xyz" });const clientFromBaseUrl = createClient({ baseUrl: "https://api.telegram.org/botxyz" });const clientWithCustomFetch = createClient({ token: "xyz", fetch: customFetchFunction }); Copy
const client = createClient({ token: "xyz" });const clientFromBaseUrl = createClient({ baseUrl: "https://api.telegram.org/botxyz" });const clientWithCustomFetch = createClient({ token: "xyz", fetch: customFetchFunction });
Create a Client.