1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-02 11:34:53 +02:00

Reorder import (#8313)

This commit is contained in:
Justin Baur 2024-03-12 17:38:28 -05:00 committed by GitHub
parent 3175b20ca5
commit 8f8385d822
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,6 +15,8 @@ import {
DerivedStateProvider,
UserKeyDefinition,
} from "../src/platform/state";
// eslint-disable-next-line import/no-restricted-paths -- Needed to type check similarly to the real state providers
import { isUserKeyDefinition } from "../src/platform/state/user-key-definition";
import { UserId } from "../src/types/guid";
import { DerivedStateDependencies } from "../src/types/state";
@ -25,7 +27,6 @@ import {
FakeGlobalState,
FakeSingleUserState,
} from "./fake-state";
import { isUserKeyDefinition } from "../src/platform/state/user-key-definition";
export class FakeGlobalStateProvider implements GlobalStateProvider {
mock = mock<GlobalStateProvider>();