7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
|
|
export enum InstantMessageEventFlags
|
||
|
|
{
|
||
|
|
normal = 0,
|
||
|
|
busyResponse = 1,
|
||
|
|
startTyping = 2,
|
||
|
|
finishTyping = 4
|
||
|
|
}
|