mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
11 lines
339 B
TypeScript
11 lines
339 B
TypeScript
import { NativeModules } from 'react-native';
|
|
const { NotificationsModule } = NativeModules;
|
|
|
|
interface NotificationsModuleInterface {
|
|
monitorOrders: (slotsJson: string) => void;
|
|
useProxy: (useProxy: string) => void;
|
|
setFederation: (federation: string) => void;
|
|
}
|
|
|
|
export default NotificationsModule as NotificationsModuleInterface;
|