mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-20 14:39:11 +00:00
format
This commit is contained in:
@@ -4,11 +4,11 @@ import type { InfoSystemNameChunk } from './info-system-name-chunk.js';
|
||||
import type { InfoTrackerListChunk } from './info-tracker-list-chunk.js';
|
||||
|
||||
export interface InfoPacketChunkData {
|
||||
packetHeader?: PacketHeaderChunk;
|
||||
systemName?: InfoSystemNameChunk;
|
||||
trackerList?: InfoTrackerListChunk;
|
||||
packetHeader?: PacketHeaderChunk;
|
||||
systemName?: InfoSystemNameChunk;
|
||||
trackerList?: InfoTrackerListChunk;
|
||||
}
|
||||
export interface InfoPacketChunk {
|
||||
chunk: Chunk;
|
||||
data: InfoPacketChunkData;
|
||||
chunk: Chunk;
|
||||
data: InfoPacketChunkData;
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import type { Chunk } from '../chunk.js';
|
||||
|
||||
export interface InfoSystemNameChunkData {
|
||||
systemName: string;
|
||||
systemName: string;
|
||||
}
|
||||
|
||||
export interface InfoSystemNameChunk {
|
||||
chunk: Chunk;
|
||||
data: InfoSystemNameChunkData;
|
||||
chunk: Chunk;
|
||||
data: InfoSystemNameChunkData;
|
||||
}
|
||||
|
||||
@@ -2,10 +2,10 @@ import type { Chunk } from '../chunk.js';
|
||||
import type { InfoTrackerNameChunk } from './info-tracker-name-chunk.js';
|
||||
|
||||
export interface InfoTrackerChunkData {
|
||||
trackerName: InfoTrackerNameChunk;
|
||||
trackerName: InfoTrackerNameChunk;
|
||||
}
|
||||
|
||||
export interface InfoTrackerChunk {
|
||||
chunk: Chunk;
|
||||
data?: InfoTrackerChunkData;
|
||||
chunk: Chunk;
|
||||
data?: InfoTrackerChunkData;
|
||||
}
|
||||
|
||||
@@ -2,10 +2,10 @@ import type { Chunk } from '../chunk.js';
|
||||
import type { InfoTrackerChunk } from './info-tracker-chunk.js';
|
||||
|
||||
export interface InfoTrackerListChunkData {
|
||||
trackers: InfoTrackerChunk[];
|
||||
trackers: InfoTrackerChunk[];
|
||||
}
|
||||
|
||||
export interface InfoTrackerListChunk {
|
||||
chunk: Chunk;
|
||||
data: InfoTrackerListChunkData;
|
||||
chunk: Chunk;
|
||||
data: InfoTrackerListChunkData;
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import type { Chunk } from '../chunk.js';
|
||||
|
||||
export interface InfoTrackerNameChunkData {
|
||||
trackerName: string;
|
||||
trackerName: string;
|
||||
}
|
||||
|
||||
export interface InfoTrackerNameChunk {
|
||||
chunk: Chunk;
|
||||
data: InfoTrackerNameChunkData;
|
||||
chunk: Chunk;
|
||||
data: InfoTrackerNameChunkData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user