@whiskeysockets/baileys
Version:
A WebSockets library for interacting with WhatsApp Web
10 lines (9 loc) • 360 B
TypeScript
import { USyncQueryProtocol } from '../../Types/USync';
import { BinaryNode } from '../../WABinary';
import { USyncUser } from '../USyncUser';
export declare class USyncContactProtocol implements USyncQueryProtocol {
name: string;
getQueryElement(): BinaryNode;
getUserElement(user: USyncUser): BinaryNode;
parser(node: BinaryNode): boolean;
}