ComponentMessageDelegate.h 303 B

12345678910111213141516
  1. //
  2. // ComponentMessageDelegate.h
  3. // TapCommonSDK
  4. //
  5. // Created by Bottle K on 2021/5/11.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol ComponentMessageDelegate <NSObject>
  10. - (void)onMessageWithCode:(NSInteger)code extras:(NSDictionary *)extras;
  11. @end
  12. NS_ASSUME_NONNULL_END