UNPKG

@igo2/geo

Version:
16 lines (15 loc) 415 B
import { TimeFilterStyle, TimeFilterType } from './time-filter.enum'; export interface TimeFilterOptions { min?: string; max?: string; range?: boolean; value?: string | [string, string]; default?: string | [string, string]; type?: TimeFilterType; format?: string; style?: TimeFilterStyle; step?: number; timeInterval?: number; current?: boolean; enabled?: boolean; }