mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
* refactor(platform): generate @bitwarden/storage-core boilerplate * refactor(storage-core): move storage files out of @bitwarden/common * chore(naming): rename AbstractStorageService to StorageService
11 lines
338 B
TypeScript
11 lines
338 B
TypeScript
import { HtmlStorageLocation } from "./html-storage-location.enum";
|
|
import { StorageLocationEnum as StorageLocation } from "./storage-location.enum";
|
|
|
|
export type StorageOptions = {
|
|
storageLocation?: StorageLocation;
|
|
useSecureStorage?: boolean;
|
|
userId?: string;
|
|
htmlStorageLocation?: HtmlStorageLocation;
|
|
keySuffix?: string;
|
|
};
|