UNPKG

@gwigz/homunculus-core

Version:

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

48 lines (47 loc) 1.56 kB
/** * GroupNoticesListReply 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 { Bool, U8, U32, UUID, Variable2 } from "../types"; import { type PacketMetadata } from "./packet"; export interface GroupNoticesListReplyData { agentData: { agentId?: string; groupId: string; }; data?: { noticeId: string; timestamp: number; fromName: string | Buffer; subject: string | Buffer; hasAttachment: boolean; assetType: number; }[]; } export declare const groupNoticesListReplyMetadata: { id: number; name: string; frequency: 2; trusted: true; blocks: ({ name: string; parameters: [string, typeof UUID][]; multiple?: undefined; } | { name: string; parameters: ([string, typeof U32] | [string, typeof U8] | [string, typeof UUID] | [string, typeof Bool] | [string, typeof Variable2])[]; multiple: true; })[]; }; export declare const groupNoticesListReply: (data: GroupNoticesListReplyData, reliable?: boolean) => { data: GroupNoticesListReplyData; reliable: boolean | undefined; metadata: PacketMetadata; }; export declare const createGroupNoticesListReplyDelegate: (config: Omit<import("..").DelegateConfig<GroupNoticesListReplyData>, "metadata">) => void;