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

14 lines
391 B
TypeScript
Raw Normal View History

2017-12-13 15:23:50 +00:00
import { ChatAudibleLevel } from '../enums/ChatAudible';
import { ChatType } from '../enums/ChatType';
import { ChatSourceType, UUID, Vector3 } from '..';
2017-12-13 15:23:50 +00:00
export declare class ChatEvent {
from: UUID;
ownerID: UUID;
fromName: string;
chatType: ChatType;
sourceType: ChatSourceType;
audible: ChatAudibleLevel;
position: Vector3;
message: string;
}