Files
psn-js/src/models/info/info-tracker-chunk.ts
T
Joel Wetzell 466228fb4a format
2026-07-13 14:09:21 -05:00

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;
}