UNPKG

@faouzkk/baileys

Version:

A WebSockets library for interacting with WhatsApp Web

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