UNPKG
ztobp.js
Version:
latest (1.0.1)
1.0.1
1.0.0
A bot framework for custom bots in chat rooms.
github.com/yourusername/ztobpjs
yourusername/ztobpjs
ztobp.js
/
src
/
Events.ts
9 lines
(8 loc)
•
254 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
// src/Events.ts
export
class
Events
{
static
onMessageReceived
(
callback:
Function
) {
// Simulate message received event (you can later wire it to an actual event handler)
console
.
log
(
"Message received event triggered."
);
callback
(); } }