baileys-bottle-devstroupe
Version:
A little package made by deadlinecode and updated by vspok for storing all the data from baileys in whatever database you want to use by using typeorm
22 lines (21 loc) • 520 B
TypeScript
import { GroupParticipant } from "baileys";
import { Auth } from "./Auth";
export declare class GroupMetadata {
DBId: number;
DBAuth: Auth;
id: string;
owner: string | undefined;
subject: string;
subjectOwner?: string;
subjectTime?: number;
creation?: number;
desc?: string;
descOwner?: string;
descId?: string;
restrict?: boolean;
announce?: boolean;
size?: number;
participants: GroupParticipant[];
ephemeralDuration?: number;
inviteCode?: string;
}