mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
import { Opaque } from "type-fest";
|
|
|
|
export const IntegrationIds = [
|
|
"anonaddy",
|
|
"duckduckgo",
|
|
"fastmail",
|
|
"firefoxrelay",
|
|
"forwardemail",
|
|
"simplelogin",
|
|
] as const;
|
|
|
|
/** Identifies a vendor integrated into bitwarden */
|
|
export type IntegrationId = Opaque<string, "IntegrationId">;
|