Updated data types of width and height

This commit is contained in:
Prianka Liz Kariat 2023-06-13 22:28:09 +05:30
parent 5e2bb0e1db
commit dddbcc4449

View File

@ -48,10 +48,10 @@ NS_SWIFT_NAME(Mask)
@interface MPPMask : NSObject <NSCopying>
/** The width of the mask. */
@property(nonatomic, readonly) CGFloat width;
@property(nonatomic, readonly) NSInteger width;
/** The height of the mask. */
@property(nonatomic, readonly) CGFloat height;
@property(nonatomic, readonly) NSInteger height;
/** The data type of the mask. */
@property(nonatomic, readonly) MPPMaskDataType dataType;