UNPKG
nodito
Version:
latest (0.0.1)
0.0.1
Una librería para aprender juegos por turnos en node.
emilioastarita/nodito
nodito
/
dist
/
from-client
/
ClientMessageFactory.d.ts
10 lines
(9 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Game
}
from
"../Game"
;
import
{
Room
}
from
"../Room"
;
import
{
IMsgFromClient
}
from
"./ClientMessage"
;
export
declare
class
ClientMessageFactory
{
private
initMakers;
private
executors;
install
(
game
:
Game
<
Room
>):
void
;
exec
(
message
:
IMsgFromClient
):
boolean
; }