UNPKG

evolution-api-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

14 lines (11 loc) 340 B
import { ChatId, GroupJid } from '../../../types/tags.mjs'; interface CreateGroupRequest { subject: string; participants: ChatId[]; } interface CreateGroupResponse { status: string; gid: GroupJid; } type CreateGroupOptions = CreateGroupRequest; export type { CreateGroupOptions, CreateGroupRequest, CreateGroupResponse };