mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
16 lines
454 B
Objective-C
16 lines
454 B
Objective-C
/**
|
|
http://www.w3.org/TR/SVG/coords.html#InterfaceSVGAnimatedPreserveAspectRatio
|
|
|
|
readonly attribute SVGPreserveAspectRatio baseVal;
|
|
readonly attribute SVGPreserveAspectRatio animVal;
|
|
*/
|
|
#import <Foundation/Foundation.h>
|
|
#import "SVGPreserveAspectRatio.h"
|
|
|
|
@interface SVGAnimatedPreserveAspectRatio : NSObject
|
|
|
|
@property(nonatomic,strong) SVGPreserveAspectRatio* baseVal;
|
|
@property(nonatomic,strong, readonly) SVGPreserveAspectRatio* animVal;
|
|
|
|
@end
|