mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
28 lines
486 B
Objective-C
28 lines
486 B
Objective-C
//
|
|
// 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;
|
|
- (NSArray<NSString *> *)supportedEvents;
|
|
|
|
@end
|