1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

Add devFlag for the config service retrieval interval when developing (#9006)

* Add devFlag for a configurable config retrieval interval when developing

* Add Ms suffix to dev flag
This commit is contained in:
Shane Melton
2024-05-15 13:54:05 -07:00
committed by GitHub
parent db2f60b684
commit 385664c977
2 changed files with 8 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ export type SharedFlags = {
export type SharedDevFlags = {
noopNotifications: boolean;
skipWelcomeOnInstall: boolean;
configRetrievalIntervalMs: number;
};
function getFlags<T>(envFlags: string | T): T {