diff --git a/libs/state/src/core/user-state.ts b/libs/state/src/core/user-state.ts index 8607515127c..b8272426941 100644 --- a/libs/state/src/core/user-state.ts +++ b/libs/state/src/core/user-state.ts @@ -17,6 +17,10 @@ export interface UserState { export const activeMarker: unique symbol = Symbol("active"); +/** + * @deprecated ActiveUserState is deprecated. Use SingleUserState instead. + * See https://github.com/bitwarden/clients/tree/main/libs/state#should-i-use-activeuserstate + */ export interface ActiveUserState extends UserState { readonly [activeMarker]: true;