8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
export class LocalStoreConstants {
|
|
|
|
static readonly THEME_KEY = 'theme';
|
|
static readonly LANGUAGE_KEY = 'lang';
|
|
|
|
static readonly RELOAD_ALL_LANG_LISTENER_KEY = 'language_dirty_flag';
|
|
}
|