superchats
Version:
SuperChats is a premium library with unique features that control Whatsapp functions. With Superchats you can build service bots, multiservice chats or any system that uses whatsapp
14 lines (13 loc) • 463 B
TypeScript
import { SignalProtocolAddressType } from './';
export declare class SignalProtocolAddress implements SignalProtocolAddressType {
static fromString(s: string): SignalProtocolAddress;
private _name;
private _deviceId;
constructor(_name: string, _deviceId: number);
get name(): string;
get deviceId(): number;
getName(): string;
getDeviceId(): number;
toString(): string;
equals(other: SignalProtocolAddressType): boolean;
}