mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 11:26:24 +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;
|