Interface IntervalMonthDayNanoObject<StringifyNano>

interface IntervalMonthDayNanoObject<StringifyNano extends boolean = false> {
    days: number;
    months: number;
    nanoseconds: StringifyNano extends true ? string : number | bigint;
}

Type Parameters

  • StringifyNano extends boolean = false

Properties

days: number
months: number
nanoseconds: StringifyNano extends true ? string : number | bigint