mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-17 13:23:43 +00:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import { Chunk } from '../chunk';
|
|
|
|
export interface DataTrackerTimestampChunkData {
|
|
timestamp: bigint;
|
|
}
|
|
|
|
export interface DataTrackerTimestampChunk {
|
|
chunk: Chunk;
|
|
data: DataTrackerTimestampChunkData;
|
|
}
|