@vreden/meta
Version:
Baileys is a lightweight JavaScript library for interacting with the WhatsApp Web API using WebSocket.
14 lines (12 loc) • 379 B
TypeScript
import { USyncQueryProtocol } from '../../Types/USync'
import { BinaryNode } from '../../WABinary'
export type StatusData = {
status?: string | null
setAt?: Date
}
export declare class USyncStatusProtocol implements USyncQueryProtocol {
name: string
getQueryElement(): BinaryNode
getUserElement(): null
parser(node: BinaryNode): StatusData | undefined
}