UNPKG

@whiskeysockets/baileys

Version:

A WebSockets library for interacting with WhatsApp Web

23 lines (22 loc) 635 B
import { USyncQueryProtocol } from '../../Types/USync'; import { BinaryNode } from '../../WABinary'; export type KeyIndexData = { timestamp: number; signedKeyIndex?: Uint8Array; expectedTimestamp?: number; }; export type DeviceListData = { id: number; keyIndex?: number; isHosted?: boolean; }; export type ParsedDeviceInfo = { deviceList?: DeviceListData[]; keyIndex?: KeyIndexData; }; export declare class USyncDeviceProtocol implements USyncQueryProtocol { name: string; getQueryElement(): BinaryNode; getUserElement(): BinaryNode | null; parser(node: BinaryNode): ParsedDeviceInfo; }