export interface IDialogs { NONE: string, MAP_LIST: string, APP_INFO: string, } export interface IMapTabs { mine: string, all: string, starred: string, } export const DIALOGS: IDialogs = ({ NONE: 'NONE', MAP_LIST: 'MAP_LIST', APP_INFO: 'APP_INFO', }); export const TABS: IMapTabs = ({ mine: 'Мои', starred: 'Общие', all: 'ВСЕ', });