mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-23 13:49:01 +00:00
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
![]() |
import { NativeModules } from 'react-native';
|
||
|
const { SystemModule } = NativeModules;
|
||
|
|
||
|
interface SystemModuleInterface {
|
||
|
useProxy: (useProxy: string) => void;
|
||
|
setFederation: (federation: string) => void;
|
||
|
}
|
||
|
|
||
|
export default SystemModule as SystemModuleInterface;
|