mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-18 05:34:15 +00:00
12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
import type { Chunk } from '../chunk.js';
|
|
import type { InfoTrackerNameChunk } from './info-tracker-name-chunk.js';
|
|
|
|
export interface InfoTrackerChunkData {
|
|
trackerName: InfoTrackerNameChunk;
|
|
}
|
|
|
|
export interface InfoTrackerChunk {
|
|
chunk: Chunk;
|
|
data?: InfoTrackerChunkData;
|
|
}
|