UNPKG

baileys-bottle

Version:

A little package made by deadlinecode for storing all the data from baileys in whatever database you want to use by using typeorm

22 lines (21 loc) 554 B
import { GroupParticipant } from "@adiwajshing/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; }