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

28 lines (27 loc) 583 B
/** * Group properties */ export declare enum GroupProperty { /** * Define how can send message in the group * `true` only admins * `false` everyone */ ANNOUNCEMENT = "announcement", /** * Define how can edit the group data * `true` only admins * `false` everyone */ RESTRICT = "restrict", /** * Non-Documented */ NO_FREQUENTLY_FORWARDED = "no_frequently_forwarded", /** * Enable or disable temporary messages * `true` to enable * `false` to disable */ EPHEMERAL = "ephemeral" }