UNPKG

@gwigz/homunculus-core

Version:

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

27 lines (26 loc) 790 B
import type { ParcelPropertiesData } from "../network"; export declare class Parcel { readonly id: number; readonly name: string; readonly description: string; readonly category: number; readonly parcelFlags: number; readonly regionPushOverride: boolean; readonly landingType: number; readonly ownerKey: string; readonly groupKey: string; readonly isGroupOwned: boolean; readonly maxPrims: number; readonly totalPrims: number; readonly ownerPrims: number; readonly groupPrims: number; readonly otherPrims: number; readonly selectedPrims: number; readonly parcelPrimBonus: number; readonly musicUrl: string; readonly mediaUrl: string; /** * @internal */ constructor(data: ParcelPropertiesData); }