import type { DoubleDigitInt } from "../int/doubleDigitInt"; import type { Int } from "../int/int"; import type { TripleDigitInt } from "../int/tripleDigitInt"; export type MillisecondsTypeInt = Int | DoubleDigitInt | TripleDigitInt;