UNPKG
snake-cli-ts
Version:
latest (1.3.4)
1.3.4
Nodejs cli snake game
github.com/akcyp/snake-cli
akcyp/snake-cli
snake-cli-ts
/
lib
/
core
/
Printer.d.ts
8 lines
(7 loc)
•
168 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
SnakeGame
from
'./SnakeGame'
;
declare
class
Printer
{
game
:
SnakeGame
;
constructor
(
game
:
SnakeGame
);
print
():
void
; }
export
default
Printer
;