evolution-api-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
14 lines (11 loc) • 366 B
TypeScript
import { GroupJid, Jid } from '../../../types/tags.js';
interface SendGroupInviteRequest {
groupJid: GroupJid;
participantJid: Jid;
}
interface SendGroupInviteResponse {
status: string;
message: string;
}
type SendGroupInviteOptions = SendGroupInviteRequest;
export type { SendGroupInviteOptions, SendGroupInviteRequest, SendGroupInviteResponse };