robosats/mobile/native/SystemModule.ts

10 lines
265 B
TypeScript
Raw Normal View History

2024-07-12 10:57:09 +00:00
import { NativeModules } from 'react-native';
const { SystemModule } = NativeModules;
interface SystemModuleInterface {
useProxy: (useProxy: string) => void;
setFederation: (federation: string) => void;
}
export default SystemModule as SystemModuleInterface;