/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45// Type declarations for @vscode/macos-keychain.6// The package is an optional dependency (macOS-only native addon), so types7// are duplicated here to ensure TypeScript compilation succeeds on all platforms.89declare module '@vscode/macos-keychain' {10export function keychainSet(service: string, account: string, value: string): void;11export function keychainGet(service: string, account: string): string | undefined;12export function keychainDelete(service: string, account: string): boolean;13export function keychainList(service: string): string[];14}151617