This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/Extension/DoricBridgeExtension.h

17 lines
381 B
C
Raw Normal View History

2019-07-29 20:51:53 +08:00
//
// DoricBridgeExtension.h
// Doric
//
// Created by pengfei.zhou on 2019/7/29.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DoricBridgeExtension : NSObject
2019-10-12 14:48:19 +08:00
- (id)callNativeWithContextId:(NSString *)contextId module:(NSString *)module method:(NSString *)method callbackId:(NSString *)callbackId argument:(id)argument;
2019-07-29 20:51:53 +08:00
@end
NS_ASSUME_NONNULL_END