mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-17 13:23:43 +00:00
11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
import { Chunk } from '../chunk.js';
|
|
|
|
export interface InfoTrackerNameChunkData {
|
|
trackerName: string;
|
|
}
|
|
|
|
export interface InfoTrackerNameChunk {
|
|
chunk: Chunk;
|
|
data: InfoTrackerNameChunkData;
|
|
}
|