Type Alias TimeRangeQueryParams
TimeRangeQueryParams:
| { duration: number
| string; from?: never; to?: never }
| { duration: number | string; from: string; to?: never }
| { duration: number | string; to: string; from?: never }
| { from: string; duration?: never; to?: never }
| { duration: never; from: string; to: string }