Time of day

Represents time without a date component.

MatterSpecification.v13.Core § 7.18.2.3

interface Tod {
    hours?: number;
    hundredths?: number;
    minutes?: number;
    seconds?: number;
}

Hierarchy (view full)

Properties

hours?: number

Hour of the current day.

hundredths?: number

Hundredth of the current second.

minutes?: number

Minute of the current hour.

seconds?: number

Second of the current minute.