34 lines
534 B
TypeScript
34 lines
534 B
TypeScript
export enum LocalesLabelModes {
|
|
auto = 'auto',
|
|
value = 'val',
|
|
translation = 'trans',
|
|
}
|
|
|
|
export enum MessageType {
|
|
Show,
|
|
Success,
|
|
Error,
|
|
Warning,
|
|
Info,
|
|
}
|
|
export interface MenuItemType {
|
|
id: string
|
|
title: string
|
|
active: boolean
|
|
link: string
|
|
}
|
|
|
|
export interface DataSections {
|
|
[key: string]: string
|
|
}
|
|
|
|
export enum NavItemType {
|
|
router_link = 'router_link',
|
|
app_link = 'app_link',
|
|
a_blank = 'a_blank',
|
|
a_link = 'a_link',
|
|
cloud_link = 'cloud_link',
|
|
module_label = 'module_label',
|
|
separator = 'separator',
|
|
}
|