PNSCrashComponentInterface.h 433 B

12345678910111213141516171819202122
  1. //
  2. // PNSCrashComponentInterface.h
  3. // ATAuthSDK
  4. //
  5. // Created by Vienta on 2020/2/6.
  6. // Copyright © 2020 alicom. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void (^PNSCrashCallback)(NSString *crashUUID, NSException *exception);
  11. @protocol PNSCrashComponentInterface <NSObject>
  12. - (void)setupSDKCrashComponentWithCallback:(PNSCrashCallback)callback;
  13. @end
  14. NS_ASSUME_NONNULL_END