/** * A Duration represents the elapsed time between two instants * as an int64 nanosecond count. The representation limits the * largest representable duration to approximately 290 years. */ export type Itime = number; export type time = Itime; export type { Itime as IDurationTime, time as DurationTime };