Nessuna descrizione

RNFetchBlobConst.h 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // RNFetchBlobConst.h
  3. // RNFetchBlob
  4. //
  5. // Created by Ben Hsieh on 2016/6/6.
  6. // Copyright © 2016年 suzuri04x2. All rights reserved.
  7. //
  8. #ifndef RNFetchBlobConst_h
  9. #define RNFetchBlobConst_h
  10. #import <Foundation/Foundation.h>
  11. // lib event
  12. extern NSString *const MSG_EVENT;
  13. extern NSString *const MSG_EVENT_LOG;
  14. extern NSString *const MSG_EVENT_WARN;
  15. extern NSString *const MSG_EVENT_ERROR;
  16. extern NSString *const EVENT_PROGRESS;
  17. extern NSString *const EVENT_PROGRESS_UPLOAD;
  18. extern NSString *const EVENT_STATE_CHANGE;
  19. extern NSString *const FILE_PREFIX;
  20. extern NSString *const ASSET_PREFIX;
  21. extern NSString *const AL_PREFIX;
  22. // config
  23. extern NSString *const CONFIG_USE_TEMP;
  24. extern NSString *const CONFIG_FILE_PATH;
  25. extern NSString *const CONFIG_FILE_EXT;
  26. extern NSString *const CONFIG_TRUSTY;
  27. extern NSString *const CONFIG_INDICATOR;
  28. extern NSString *const CONFIG_KEY;
  29. extern NSString *const CONFIG_EXTRA_BLOB_CTYPE;
  30. // fs events
  31. extern NSString *const FS_EVENT_DATA;
  32. extern NSString *const FS_EVENT_END;
  33. extern NSString *const FS_EVENT_WARN;
  34. extern NSString *const FS_EVENT_ERROR;
  35. extern NSString *const KEY_REPORT_PROGRESS;
  36. extern NSString *const KEY_REPORT_UPLOAD_PROGRESS;
  37. // response type
  38. extern NSString *const RESP_TYPE_BASE64;
  39. extern NSString *const RESP_TYPE_UTF8;
  40. extern NSString *const RESP_TYPE_PATH;
  41. #endif /* RNFetchBlobConst_h */