forked from CringeStudios/element-desktop
22 lines
612 B
TypeScript
22 lines
612 B
TypeScript
/*
|
|
Copyright 2022-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import type * as Keytar from "keytar"; // Hak dependency type
|
|
|
|
let keytar: typeof Keytar | undefined;
|
|
try {
|
|
({ default: keytar } = await import("keytar"));
|
|
} catch (e) {
|
|
if ((<NodeJS.ErrnoException>e).code === "MODULE_NOT_FOUND") {
|
|
console.log("Keytar isn't installed; secure key storage is disabled.");
|
|
} else {
|
|
console.warn("Keytar unexpected error:", e);
|
|
}
|
|
}
|
|
|
|
export { keytar };
|