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