UNPKG

@stackoverfloweth/prefect-design

Version:

A collection of low-level Vue components.

8 lines (7 loc) 291 B
import { DateRangeSelectValue } from '../types/dateRange'; export type DateRangeWithTimeSpan = { startDate: Date; endDate: Date; timeSpanInSeconds: number; }; export declare function mapDateRangeSelectValueToDateRange(source: DateRangeSelectValue): DateRangeWithTimeSpan | null;