WellNuo/types/react-native-base64.d.ts
Sergei f94121b848 Update voice call, equipment tracking, and cleanup
- Update WellNuoLite submodule with Julia AI race condition fix
- Add ultravoxService for voice call handling
- Update voice.tsx with improved call flow
- Update equipment tracking in beneficiary details
- Clean up old data files
- Add react-native-base64 type definitions
- Add debug tools

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-22 09:34:01 -08:00

10 lines
241 B
TypeScript

declare module 'react-native-base64' {
export function encode(input: string): string;
export function decode(input: string): string;
const base64: {
encode: typeof encode;
decode: typeof decode;
};
export default base64;
}