2025-01-17 23:37:54 +00:00
|
|
|
import type { ChatSourceType } from '../enums/ChatSourceType';
|
|
|
|
|
import type { UUID } from '../classes/UUID';
|
|
|
|
|
import type { InstantMessageEventFlags } from '../enums/InstantMessageEventFlags';
|
2017-12-13 19:55:08 +00:00
|
|
|
|
|
|
|
|
export class InstantMessageEvent
|
|
|
|
|
{
|
2025-01-17 23:37:54 +00:00
|
|
|
public source: ChatSourceType;
|
|
|
|
|
public fromName: string;
|
|
|
|
|
public from: UUID;
|
|
|
|
|
public owner: UUID;
|
|
|
|
|
public message: string;
|
|
|
|
|
public flags: InstantMessageEventFlags;
|
2017-12-13 19:55:08 +00:00
|
|
|
}
|