@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
25 lines (24 loc) • 439 B
TypeScript
export interface PartialMessage {
id: ID;
body: string;
type: string;
t: number;
notifyName: string;
from: string;
to: string;
self: string;
ack: number;
invis: boolean;
star: boolean;
broadcast: boolean;
mentionedJidList: any[];
isForwarded: boolean;
labels: any[];
}
interface ID {
fromMe: boolean;
remote: string;
id: string;
_serialized: string;
}
export {};