#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>

@class UIColor;
@interface BVLinearGradientLayer : CALayer
@property (nullable, nonatomic, copy) NSArray<UIColor *> *colors;
@property (nullable, nonatomic, copy) NSArray<NSNumber *> *locations;
@property (nonatomic) CGPoint startPoint;
@property (nonatomic) CGPoint endPoint;
@end

