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

12 lines
333 B
TypeScript

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