venom-bot
Version:
Venom is a high-performance system developed with JavaScript to create a bot for WhatsApp, support for creating any interaction, such as customer service, media sending, sentence recognition based on artificial intelligence and all types of design archite
25 lines (24 loc) • 485 B
TypeScript
import { Id } from './id';
import { AckType } from './enum';
export interface Ack {
id: Id;
body: string;
type: string;
t: number;
subtype: any;
notifyName: string;
from: string;
to: string;
self: string;
ack: AckType;
invis: boolean;
isNewMsg: boolean;
star: boolean;
loc: string;
lat: number;
lng: number;
mentionedJidList: any[];
isForwarded: boolean;
labels: any[];
ephemeralStartTimestamp: number;
}