import type { INavLinkItem } from '../../types'; export const sortChannels: Array = [ { title: 'sort.trending', value: 'trending', key: 'sort', query: '-popularity', }, { title: 'sort.new_videos', value: 'new-videos', key: 'sort', query: '-updated', }, { title: 'A-Z', value: 'alphabet', key: 'sort', query: 'name', }, { title: 'sort.network', value: 'network', key: 'sort', query: '-is_network', }, ];