Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 157x 1026642x 1026642x | /** * Relative timestamp, which can be decoded give a table * of clocks. Session index specifies clock indes in the table. */ export class RelativeTimestamp { /** * * @param sessionIndex Index of the clock in clock table. * @param timeDiff Time difference relative to the clock time from the table. */ public constructor( public readonly sessionIndex: number, public readonly timeDiff: number, ) {} } |