UNPKG

@gwigz/homunculus-core

Version:

A third-party framework for interacting with Linden Lab's virtual world "Second Life"

32 lines (31 loc) 996 B
/** * CompletePingCheck Packet * * This file is used to help our packet serialization and deserialization * process, and to create new packets on the fly. * * ⚠️ Do not edit this file manually, it is generated by the `codegen` script! * * @see {@link http://wiki.secondlife.com/wiki/Message_Layout} */ import { U8 } from "../types"; import { type PacketMetadata } from "./packet"; export interface CompletePingCheckData { pingId?: { pingId: number; }; } export declare const completePingCheckMetadata: { id: number; name: string; blocks: { name: string; parameters: [string, typeof U8][]; }[]; }; export declare const completePingCheck: (data: CompletePingCheckData, reliable?: boolean) => { data: CompletePingCheckData; reliable: boolean | undefined; metadata: PacketMetadata; }; export declare const createCompletePingCheckDelegate: (config: Omit<import("..").DelegateConfig<CompletePingCheckData>, "metadata">) => void;