summaryrefslogtreecommitdiffstats
path: root/macosx/HBTitle.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBTitle.h')
-rw-r--r--macosx/HBTitle.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/macosx/HBTitle.h b/macosx/HBTitle.h
index 1c0ddc963..898166d6f 100644
--- a/macosx/HBTitle.h
+++ b/macosx/HBTitle.h
@@ -8,6 +8,8 @@
NS_ASSUME_NONNULL_BEGIN
+@class HBChapter;
+
/**
* HBTitles is an interface to the low-level hb_title_t.
* the properties are lazy-loaded.
@@ -38,9 +40,9 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, readonly) int autoCropLeft;
@property (nonatomic, readonly) int autoCropRight;
-@property (nonatomic, readonly) NSArray *audioTracks;
-@property (nonatomic, readonly) NSArray *subtitlesTracks;
-@property (nonatomic, readonly) NSArray *chapters;
+@property (nonatomic, readonly) NSArray<NSDictionary<NSString *, id> *> *audioTracks;
+@property (nonatomic, readonly) NSArray<NSDictionary<NSString *, id> *> *subtitlesTracks;
+@property (nonatomic, readonly) NSArray<HBChapter *> *chapters;
@end