Skip to content

Commit

Permalink
Add support for generics
Browse files Browse the repository at this point in the history
  • Loading branch information
SoneeJohn committed Dec 27, 2015
1 parent 385ae37 commit aa90fdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions YTVimeoExtractor/YTVimeoVideo.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ typedef NS_ENUM(NSUInteger, YTVimeoVideoQuality) {
* A `NSDictionary` object that contains the various stream URLs.
* @see YTVimeoVideoQuality
*/
@property (nonatomic, readonly) NSDictionary *__nullable streamURLs;
@property (nonatomic, readonly) NSDictionary<id, NSURL *> *__nullable streamURLs;
/**
* A `NSDictionary` object that contains the various thumbnail URLs.
* @see YTVimeoVideoThumbnailQuality
*/
@property (nonatomic, readonly) NSDictionary *__nullable thumbnailURLs;
@property (nonatomic, readonly) NSDictionary<id, NSURL *> *__nullable thumbnailURLs;
/**
* A `NSDictionary` object that contains all the metadata about the video.
*/
Expand Down

0 comments on commit aa90fdc

Please sign in to comment.