mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-09-08 15:59:22 +00:00
align structure more with underlying chunk layout
This commit is contained in:
@@ -3,8 +3,12 @@ import { PacketHeaderChunk } from '../packet-header-chunk';
|
||||
import { InfoSystemNameChunk } from './info-system-name-chunk';
|
||||
import { InfoTrackerListChunk } from './info-tracker-list-chunk';
|
||||
|
||||
export interface InfoPacketChunk extends Chunk {
|
||||
packet_header: PacketHeaderChunk;
|
||||
system_name: InfoSystemNameChunk;
|
||||
tracker_list: InfoTrackerListChunk;
|
||||
export interface InfoPacketChunkData {
|
||||
packetHeader?: PacketHeaderChunk;
|
||||
systemName?: InfoSystemNameChunk;
|
||||
trackerList?: InfoTrackerListChunk;
|
||||
}
|
||||
export interface InfoPacketChunk {
|
||||
chunk: Chunk;
|
||||
data: InfoPacketChunkData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user