mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-26 03:26:41 +07:00
reducers typescripting
This commit is contained in:
parent
4c6526efc9
commit
85b8860862
15 changed files with 496 additions and 316 deletions
21
src/constants/dialogs.ts
Normal file
21
src/constants/dialogs.ts
Normal file
|
@ -0,0 +1,21 @@
|
|||
export interface IDialogs {
|
||||
NONE: string,
|
||||
MAP_LIST: string,
|
||||
APP_INFO: string,
|
||||
}
|
||||
|
||||
export interface IMapTabs {
|
||||
mine: string,
|
||||
all: string,
|
||||
}
|
||||
|
||||
export const DIALOGS: IDialogs = ({
|
||||
NONE: 'NONE',
|
||||
MAP_LIST: 'MAP_LIST',
|
||||
APP_INFO: 'APP_INFO',
|
||||
});
|
||||
|
||||
export const TABS: IMapTabs = ({
|
||||
mine: 'Мои',
|
||||
all: 'Общие',
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue