Coda by Ian Macalinao
    Preparing search index...

    Interface DurationNumberDisplayNode

    Display metadata that presents a number as an elapsed duration. The underlying value counts ticks; ticksPerSecond is the divisor that converts those ticks back to seconds. Renderers typically format the result as HH:mm:ss or a coarser human-readable form.

    interface DurationNumberDisplayNode {
        kind: "durationNumberDisplayNode";
        ticksPerSecond?: number;
    }
    Index
    kind: "durationNumberDisplayNode"
    ticksPerSecond?: number

    How many ticks make one second. Defaults to 1 (the value is already in seconds). Common choices are 1000 (milliseconds), 1000000 (microseconds), and 1000000000 (nanoseconds).