#ifndef IOS_WEB_PUBLIC_ANNOTATIONS_CUSTOM_TEXT_CHECKING_RESULT_H_
#define IOS_WEB_PUBLIC_ANNOTATIONS_CUSTOM_TEXT_CHECKING_RESULT_H_
#import <Foundation/Foundation.h>
uint64_t const TCTextCheckingTypeParcelTracking = 1ULL << 32;
uint64_t const TCTextCheckingTypeMeasurement = 1ULL << 33;
uint64_t const TCTextCheckingTypeCarrier = 1ULL << 34;
@interface CustomTextCheckingResult : NSTextCheckingResult
@property(readonly, copy) NSMeasurement* measurement;
@property(readonly) int carrier;
@property(readonly, copy) NSString* carrierNumber;
+ (NSTextCheckingResult*)measurementCheckingResultWithRange:(NSRange)range
measurement:
(NSMeasurement*)measurement;
+ (NSTextCheckingResult*)parcelCheckingResultWithRange:(NSRange)range
carrier:(int)carrier
carrierNumber:(NSString*)carrierNumber;
+ (NSTextCheckingResult*)carrierCheckingResultWithRange:(NSRange)range
carrier:(int)carrier;
@end
#endif