sanka-baileyss
Version:
WhatsApp API Modification By Sanka_Vollerei
19 lines (17 loc) • 404 B
TypeScript
interface Sender {
id: string
deviceId: number
toString(): string
}
export declare class SenderKeyName {
private readonly groupId
private readonly sender
constructor(groupId: string, sender: Sender)
getGroupId(): string
getSender(): Sender
serialize(): string
toString(): string
equals(other: SenderKeyName | null): boolean
hashCode(): number
}
export {}