normalizeInterval.d.ts 210 B

12345
  1. import type { ContextFn, Interval, NormalizedInterval } from "../types.js";
  2. export declare function normalizeInterval(
  3. context: ContextFn<Date> | undefined,
  4. interval: Interval,
  5. ): NormalizedInterval<Date>;