UNPKG
jsp-raknet
Version:
latest (2.2.0)
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.5.0
Basic RakNet implementation written in Javascript
github.com/JSPrismarine/RakNet
JSPrismarine/RakNet
jsp-raknet
/
js
/
protocol
/
UnconnectedPong.d.ts
11 lines
(10 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/// <reference types="node" />
import
OfflinePacket
from
'./OfflinePacket'
;
export
default
class
UnconnectedPong
extends
OfflinePacket
{
constructor
(
buffer
?:
Buffer
);
sendTimestamp
:
bigint
;
serverGUID
:
bigint
;
serverName
:
string
;
decode
():
void
;
encode
():
void
; }