Coda by Ian Macalinao
    Preparing search index...

    Interface DateTimeNumberDisplayNode

    Display metadata that presents a number as a point in time. The underlying value counts ticks since the Unix epoch; ticksPerSecond is the divisor that converts those ticks back to seconds.

    interface DateTimeNumberDisplayNode {
        kind: "dateTimeNumberDisplayNode";
        ticksPerSecond?: number;
    }
    Index
    kind: "dateTimeNumberDisplayNode"
    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).