@gwigz/homunculus-core
Version:
A third-party framework for interacting with Linden Lab's virtual world "Second Life"
17 lines (16 loc) • 382 B
TypeScript
import type { Client } from "../client";
export declare class Friend {
private readonly client;
readonly key: string;
online?: boolean;
/**
* @internal
*/
constructor(client: Client, key: string);
/**
* Send an instant message to the friend.
*
* @param message Message to send.
*/
message(message: string): Promise<void>;
}