Files
node-metaverse/dist/events/InventoryOfferedEvent.d.ts

10 lines
239 B
TypeScript

import { AssetType, ChatSourceType, UUID } from '..';
export declare class InventoryOfferedEvent {
from: UUID;
fromName: string;
requestID: UUID;
message: string;
source: ChatSourceType;
type: AssetType;
}