mirror of
https://github.com/bitwarden/browser
synced 2026-01-31 16:53:27 +00:00
* refactor: introduce @bitwarden/serialization * refactor: introduce @bitwarden/guid * refactor: introduce @bitwaren/client-type * refactor: introduce @bitwarden/core-test-utils * refactor: introduce @bitwarden/state and @bitwarden/state-test-utils Creates initial project structure for centralized application state management. Part of modularization effort to extract state code from common. * Added state provider documentation to README. * Changed callouts to Github format. * Fixed linting on file name. * Forced git to accept rename --------- Co-authored-by: Todd Martin <tmartin@bitwarden.com>
22 lines
818 B
TypeScript
22 lines
818 B
TypeScript
import { StorageLocation, ClientLocations } from "@bitwarden/storage-core";
|
|
|
|
/**
|
|
* Defines the base location and instruction of where this state is expected to be located.
|
|
*/
|
|
export class StateDefinition {
|
|
readonly storageLocationOverrides: Partial<ClientLocations>;
|
|
|
|
/**
|
|
* Creates a new instance of {@link StateDefinition}, the creation of which is owned by the platform team.
|
|
* @param name The name of the state, this needs to be unique from all other {@link StateDefinition}'s.
|
|
* @param defaultStorageLocation The location of where this state should be stored.
|
|
*/
|
|
constructor(
|
|
readonly name: string,
|
|
readonly defaultStorageLocation: StorageLocation,
|
|
storageLocationOverrides?: Partial<ClientLocations>,
|
|
) {
|
|
this.storageLocationOverrides = storageLocationOverrides ?? {};
|
|
}
|
|
}
|