mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
14 lines
432 B
Objective-C
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
|