UNPKG

@prefecthq/prefect-design

Version:

A collection of low-level Vue components.

11 lines (10 loc) 409 B
import { DateRangeSelectValue } from '../../types'; type DateRange = { startDate: Date; endDate: Date; }; export declare const PAST_7_DAYS_SECONDS: number; export declare const PAST_30_DAYS_SECONDS: number; export declare function getDateRangeSelectValueLabel(value: DateRangeSelectValue): string | null; export declare function isFullDateRange({ startDate, endDate }: DateRange): boolean; export {};