mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
Use NPM workspace (#2874)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import {
|
||||
Account as BaseAccount,
|
||||
AccountSettings as BaseAccountSettings,
|
||||
} from "jslib-common/models/domain/account";
|
||||
} from "@bitwarden/common/models/domain/account";
|
||||
|
||||
export class AccountSettings extends BaseAccountSettings {
|
||||
vaultTimeout: number = process.env.NODE_ENV === "development" ? null : 15;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { ThemeType } from "jslib-common/enums/themeType";
|
||||
import { GlobalState as BaseGlobalState } from "jslib-common/models/domain/globalState";
|
||||
import { ThemeType } from "@bitwarden/common/enums/themeType";
|
||||
import { GlobalState as BaseGlobalState } from "@bitwarden/common/models/domain/globalState";
|
||||
|
||||
export class GlobalState extends BaseGlobalState {
|
||||
theme?: ThemeType = ThemeType.Light;
|
||||
|
||||
Reference in New Issue
Block a user