0
Get the Number of Members in a Chat
One script reply has been approved by the moderators Verified
Created by elisafossieri 683 days ago Viewed 4250 times
0
Submitted by adam186 Deno
Verified 498 days ago
1
import { Telegram } from "npm:telegraf@4.11";
2

3
type Telegram = {
4
  token: string;
5
};
6
export async function main(auth: Telegram, chat_id: string) {
7
  const client = new Telegram(auth.token);
8
  return await client.getChatMembersCount(chat_id);
9
}
10