14 lines
385 B
TypeScript
14 lines
385 B
TypeScript
module.exports = {
|
|
"chat.chatHandler.send": {
|
|
"required string content": 1,
|
|
"required string target": 2,
|
|
"required string rid": 3,
|
|
"required string from": 4,
|
|
},
|
|
"chat.chatHandler.send2": {
|
|
"required string rid": 1,
|
|
"required string content": 2,
|
|
"required string from": 3,
|
|
"required string target": 4
|
|
},
|
|
}; |