8 lines
136 B
TypeScript
8 lines
136 B
TypeScript
const THEME_LOCAL_STORAGE_ID = 'theme';
|
|
|
|
enum Theme {
|
|
LIGHT = 'light',
|
|
DARK = 'dark'
|
|
}
|
|
|
|
export {THEME_LOCAL_STORAGE_ID, Theme};
|