mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 19:36:24 +00:00
9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
import { NativeModules } from 'react-native';
|
|
const { NotificationsModule } = NativeModules;
|
|
|
|
interface NotificationsModuleInterface {
|
|
monitorOrders: (slotsJson: string) => void;
|
|
}
|
|
|
|
export default NotificationsModule as NotificationsModuleInterface;
|