mirror of
https://github.com/bitwarden/browser
synced 2026-02-12 14:34:02 +00:00
15 lines
330 B
TypeScript
15 lines
330 B
TypeScript
export type EncryptedOrganizationKeyData =
|
|
| OrganizationEncryptedOrganizationKeyData
|
|
| ProviderEncryptedOrganizationKeyData;
|
|
|
|
type OrganizationEncryptedOrganizationKeyData = {
|
|
type: "organization";
|
|
key: string;
|
|
};
|
|
|
|
type ProviderEncryptedOrganizationKeyData = {
|
|
type: "provider";
|
|
key: string;
|
|
providerId: string;
|
|
};
|