1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 10:43:35 +00:00

Add creationDate of account to AccountInfo

This commit is contained in:
Todd Martin
2025-12-09 15:22:30 -05:00
parent 508131ac1e
commit 9b93ad4a03
5 changed files with 101 additions and 8 deletions

View File

@@ -16,8 +16,9 @@ export abstract class SingleUserStateProvider {
abstract get<T>(userId: UserId, userKeyDefinition: UserKeyDefinition<T>): SingleUserState<T>;
}
/** A provider for getting an implementation of state scoped to a given key, but always pointing
* to the currently active user
/**
* @deprecated ActiveUserStateProvider is deprecated. Use SingleUserStateProvider instead.
* See [state README](../../README.md#should-i-use-activeuserstate) for details.
*/
export abstract class ActiveUserStateProvider {
/**