mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-10 05:13:17 +00:00
11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
import { HtmlStorageLocation } from "../../enums/htmlStorageLocation";
|
|
import { StorageLocation } from "../../enums/storageLocation";
|
|
|
|
export type StorageOptions = {
|
|
storageLocation?: StorageLocation;
|
|
useSecureStorage?: boolean;
|
|
userId?: string;
|
|
htmlStorageLocation?: HtmlStorageLocation;
|
|
keySuffix?: string;
|
|
};
|