mirror of
https://github.com/bitwarden/web
synced 2026-02-12 06:24:01 +00:00
9 lines
274 B
TypeScript
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;
|
|
}
|