1234567891011 |
- import { CredentialManagerFactory } from './dist/index.js';
- console.log('Testing credential manager...');
- try {
- const manager = CredentialManagerFactory.createCredentialManager();
- console.log('✅ CredentialManager created successfully');
- console.log('✅ All TypeScript compilation and exports working');
- } catch (error) {
- console.error('❌ Error:', error.message);
- }
|