import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace dateRangeEnum { enum Id { TODAY = "today", YESTERDAY = "yesterday", LAST_24_HOURS = "last-24-hours", PREV_24_HOURS = "prev-24-hours", LAST_3_DAYS = "last-3-days", PREV_3_DAYS = "prev-3-days", LAST_7_DAYS = "last-7-days", PREV_7_DAYS = "prev-7-days", LAST_30_DAYS = "last-30-days", PREV_30_DAYS = "prev-30-days", LAST_3_MONTHS = "last-3-months", PREV_3_MONTHS = "prev-3-months", LAST_6_MONTHS = "last-6-months", PREV_6_MONTHS = "prev-6-months", LAST_WEEK = "last-week", PREV_WEEK = "prev-week", LAST_MONTH = "last-month", PREV_MONTH = "prev-month", LAST_QUARTER = "last-quarter", PREV_QUARTER = "prev-quarter", LAST_YEAR = "last-year", PREV_YEAR = "prev-year", THIS_WEEK = "this-week", THIS_MONTH = "this-month", THIS_QUARTER = "this-quarter", THIS_YEAR = "this-year", ALL = "all", SAME_DAY_LAST_WEEK = "same-day-last-week", CUSTOM = "custom" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; const Alternative: { lastday: string; last1d: string; last1day: string; last1days: string; prevday: string; prev1day: string; prev1d: string; prev1days: string; last24h: string; last24hour: string; last24hours: string; prev24h: string; prev24hour: string; prev24hours: string; last3d: string; last3day: string; last3days: string; prev3d: string; prev3day: string; prev3days: string; last7d: string; last7day: string; last7days: string; prev7d: string; prev7day: string; prev7days: string; last30d: string; last30day: string; last30days: string; prev30d: string; prev30day: string; prev30days: string; last3m: string; last3month: string; last3months: string; prev3m: string; prev3month: string; prev3months: string; last6m: string; last6month: string; last6months: string; prev6m: string; prev6month: string; prev6months: string; w: string; '1w': string; lastw: string; lastweek: string; last1w: string; last1week: string; last1weeks: string; prevw: string; prevweek: string; prev1w: string; prev1week: string; prev1weeks: string; m: string; '1m': string; lastm: string; lastmonth: string; last1m: string; last1month: string; last1months: string; prevm: string; prevmonth: string; prev1m: string; prev1month: string; prev1months: string; q: string; '1q': string; lastq: string; lastquarter: string; last1q: string; last1quarter: string; last1quarters: string; prevq: string; prevquarter: string; prev1q: string; prev1quarter: string; prev1quarters: string; lasty: string; lastyear: string; last1y: string; last1year: string; last1years: string; prevy: string; prevyear: string; prev1y: string; prev1year: string; prev1years: string; week: string; thisw: string; thisweek: string; month: string; thism: string; thismonth: string; quarter: string; thisq: string; thisquarter: string; year: string; thisy: string; thisyear: string; all: string; samedaylastweek: string; custom: string; other: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }