mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
import { HtmlStorageLocation, StorageLocation } from "../../enums";
|
|
|
|
export type StorageOptions = {
|
|
storageLocation?: StorageLocation;
|
|
useSecureStorage?: boolean;
|
|
userId?: string;
|
|
htmlStorageLocation?: HtmlStorageLocation;
|
|
keySuffix?: string;
|
|
};
|