2025-10-09 16:48:46 +08:00

14 lines
432 B
Objective-C

/**
Makes the writable properties all package-private, effectively
*/
#import "SVGDocument.h"
@interface SVGDocument ()
@property (nonatomic, strong, readwrite) NSString* title;
@property (nonatomic, strong, readwrite) NSString* referrer;
@property (nonatomic, strong, readwrite) NSString* domain;
@property (nonatomic, strong, readwrite) NSString* URL;
@property (nonatomic, strong, readwrite) SVGSVGElement* rootElement;
@end