evolution-api-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
14 lines (11 loc) • 339 B
TypeScript
import { ChatId, GroupJid } from '../../../types/tags.js';
interface CreateGroupRequest {
subject: string;
participants: ChatId[];
}
interface CreateGroupResponse {
status: string;
gid: GroupJid;
}
type CreateGroupOptions = CreateGroupRequest;
export type { CreateGroupOptions, CreateGroupRequest, CreateGroupResponse };