@chinchillaenterprises/mcp-ai-assistant
Version:
MCP server for AI assistant with ElevenLabs text-to-speech integration
10 lines • 453 B
TypeScript
import { ElevenLabsAccount } from '../types/account.js';
export declare class CredentialManager {
private accounts;
saveAccount(account: ElevenLabsAccount): Promise<void>;
getAccount(id: string): Promise<ElevenLabsAccount | null>;
getAllAccounts(): Promise<ElevenLabsAccount[]>;
removeAccount(id: string): Promise<void>;
updateAccount(account: ElevenLabsAccount): Promise<void>;
}
//# sourceMappingURL=credential-manager.d.ts.map