UNPKG

@whiskeysockets/baileys

Version:

A WebSockets library for interacting with WhatsApp Web

23 lines 706 B
import type { USyncQueryProtocol } from '../../Types/USync.js'; import { type BinaryNode } from '../../WABinary/index.js'; 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; } //# sourceMappingURL=USyncDeviceProtocol.d.ts.map