mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
23 lines
537 B
Objective-C
23 lines
537 B
Objective-C
//
|
|
// EventEmitter.h
|
|
// BlueWallet
|
|
//
|
|
// Created by Marcos Rodriguez on 12/25/20.
|
|
// Copyright © 2020 BlueWallet. All rights reserved.
|
|
//
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTEventEmitter.h>
|
|
|
|
@interface EventEmitter : RCTEventEmitter <RCTBridgeModule>
|
|
|
|
+ (EventEmitter *)sharedInstance;
|
|
- (void)sendNotification:(NSDictionary *)userInfo;
|
|
- (void)openSettings;
|
|
- (void)addWalletMenuAction;
|
|
- (void)importWalletMenuAction;
|
|
- (void)reloadTransactionsMenuAction;
|
|
- (void)sendUserActivity:(NSDictionary *)userInfo;
|
|
|
|
@end
|