UNPKG
ntp-packet-parser
Version:
latest (0.5.0)
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
A parser for NTP UDP packets
github.com/buffcode/ntp-packet-parser
buffcode/ntp-packet-parser
ntp-packet-parser
/
dist
/
PacketStruct.d.ts
7 lines
(6 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
NtpPacket
}
from
"./NtpPacket"
;
export
interface
PacketStruct
<T
extends
keyof
NtpPacket
> {
name
: T;
bits
:
number
;
converter
?:
(
v
:
string
,
s
:
Partial
<
NtpPacket
>
) =>
NtpPacket
[T]; }