- 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>
10 lines
241 B
TypeScript
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;
|
|
}
|