mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
17 lines
292 B
C
17 lines
292 B
C
|
//
|
||
|
// MenuElementsEmitter.h
|
||
|
// BlueWallet
|
||
|
//
|
||
|
|
||
|
#import <React/RCTEventEmitter.h>
|
||
|
|
||
|
@interface MenuElementsEmitter : RCTEventEmitter
|
||
|
|
||
|
+ (instancetype)sharedInstance;
|
||
|
|
||
|
- (void)openSettings;
|
||
|
- (void)addWalletMenuAction;
|
||
|
- (void)importWalletMenuAction;
|
||
|
- (void)reloadTransactionsMenuAction;
|
||
|
|
||
|
@end
|