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