2024-11-07 23:19:46 -04:00
|
|
|
//
|
|
|
|
// MenuElementsEmitter.h
|
|
|
|
// BlueWallet
|
|
|
|
//
|
|
|
|
// Created by Marcos Rodriguez on 11/7/24.
|
|
|
|
// Copyright © 2024 BlueWallet. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// MenuElementsEmitter.h
|
|
|
|
// BlueWallet
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <React/RCTEventEmitter.h>
|
|
|
|
|
|
|
|
@interface MenuElementsEmitter : RCTEventEmitter
|
|
|
|
|
|
|
|
+ (instancetype)sharedInstance;
|
|
|
|
|
|
|
|
- (void)openSettings;
|
|
|
|
- (void)addWalletMenuAction;
|
|
|
|
- (void)importWalletMenuAction;
|
|
|
|
- (void)reloadTransactionsMenuAction;
|
2024-11-07 23:29:26 -04:00
|
|
|
- (NSArray<NSString *> *)supportedEvents;
|
2024-11-07 23:19:46 -04:00
|
|
|
|
2024-11-07 23:29:26 -04:00
|
|
|
@end
|