ably-cocoa/Source/Private/ARTNSDictionary+ARTDictiona...

15 lines
331 B
Objective-C

#import <Foundation/Foundation.h>
@interface NSDictionary (ARTDictionaryUtil)
- (NSString *)artString:(id)key;
- (NSNumber *)artNumber:(id)key;
- (NSDate *)artTimestamp:(id)key;
- (NSArray *)artArray:(id)key;
- (NSDictionary *)artDictionary:(id)key;
- (NSInteger)artInteger:(id)key;
- (id)artTyped:(Class)cls key:(id)key;
@end