CNBBASMJumpService.h 585 Bytes
//
//  CNBBASMJumpService.h
//  AFNetworking
//
//  Created by CNLive on 2021/11/2.
//

#import <Foundation/Foundation.h>
#import <CNLiveBeeHive/CNLiveBeeHive.h>


NS_ASSUME_NONNULL_BEGIN
@protocol CNBBASMJumpProtocol <NSObject,BHServiceProtocol>

- (void)registerBBASMManager:(NSDictionary *)launchOptions;
- (void)openBBASMModule:(NSString *)urlStr;
- (BOOL)cashierHandleOpenUrl:(NSURL *)url;

@end
@interface CNBBASMJumpService : NSObject<CNBBASMJumpProtocol>
+ (void)shareBBASMWithParams:(NSDictionary *)params;

+ (NSString *)getPluginDescriptionPath;
@end

NS_ASSUME_NONNULL_END