robosats/mobile/native/SystemModule.ts
2024-09-18 15:34:31 +02:00

11 lines
323 B
TypeScript

import { NativeModules } from 'react-native';
const { SystemModule } = NativeModules;
interface SystemModuleInterface {
useProxy: (useProxy: string) => void;
setFederation: (federation: string) => void;
stopNotifications: (stopNotifications: string) => void;
}
export default SystemModule as SystemModuleInterface;