summaryrefslogtreecommitdiff
path: root/dist/classes/Group.d.ts
blob: 4b038409832cb0e3dbdff8776c469e71c5dd402b (plain)
1
2
3
4
5
6
7
8
import { Chat } from "./Chat";
import { Client } from "./Client";
export declare class Group extends Chat {
    group: boolean;
    id: string;
    private client;
    constructor(groupId: string, client: Client);
}