• Parameters

    • groupName: string
    • participants: Wid[]
    • Optionalephemeral: number
    • OptionalparentGroup: Wid

    Returns Promise<{
        gid: Wid;
        participants: ({
            [key: `${number}@c.us`]: {
                code: string;
                invite_code: string | null;
                invite_code_exp: string | null;
            };
        } | {
            code: string;
            invite_code: string | null;
            invite_code_exp: string | null;
            userWid: Wid;
        })[];
    }>

    79583