import type { INavLinkItem } from '../../types'; export const historyPeriods: Array = [ { title: 'history_period.all', shortTitle: 'history_period.all_short', value: 'all-time', key: 'period', query: 'all-time', }, { title: 'history_period.today', value: 'today', key: 'period', query: 'today', }, { title: 'history_period.week', shortTitle: 'history_period.week_short', value: 'week', key: 'period', query: 'week', }, { title: 'history_period.month', shortTitle: 'history_period.month_short', value: 'month', key: 'period', query: 'month', }, ];