UNPKG

@wppconnect-team/wppconnect

Version:

WPPConnect is an open source project developed by the JavaScript community with the aim of exporting functions from WhatsApp Web to the node, which can be used to support the creation of any interaction, such as customer service, media sending, intelligen

21 lines (20 loc) 338 B
/** * ID of user or group * "xxxxxxxxxx@c.us" for contacts * "xxxxxxxxxx@g.us" for groups */ export interface Wid { /** * "c.us" for contacts * "g.us" for groups */ server: string; /** * number of contact or group */ user: string; /** * user@server */ _serialized: string; }