1
0
mirror of https://github.com/bitwarden/web synced 2026-02-12 06:24:01 +00:00
Files
web/src/models/globalState.ts
2022-02-02 11:20:15 -05:00

9 lines
274 B
TypeScript

import { ThemeType } from "jslib-common/enums/themeType";
import { GlobalState as BaseGlobalState } from "jslib-common/models/domain/globalState";
export class GlobalState extends BaseGlobalState {
theme?: ThemeType = ThemeType.Light;
rememberEmail: boolean = true;
}