neroxbailx
Version:
baileys whatsapp-api
28 lines • 779 B
TypeScript
import { USyncQueryProtocol } from '../Types/USync'
import { BinaryNode } from '../WABinary'
import { USyncUser } from './USyncUser'
export type USyncQueryResultList = {
[protocol: string]: unknown
id: string
}
export type USyncQueryResult = {
list: USyncQueryResultList[]
sideList: USyncQueryResultList[]
}
export declare class USyncQuery {
protocols: USyncQueryProtocol[]
users: USyncUser[]
context: string
mode: string
constructor()
withMode(mode: string): this
withContext(context: string): this
withUser(user: USyncUser): this
parseUSyncQueryResult(result: BinaryNode): USyncQueryResult | undefined
withLIDProtocol(): this
withDeviceProtocol(): this
withContactProtocol(): this
withStatusProtocol(): this
withBotProfileProtocol(): this
withDisappearingModeProtocol(): this
}