Adopting lightweight generics (#2974)

This commit is contained in:
Antoine Cœur
2022-04-30 06:51:40 +08:00
committed by GitHub
parent aafedcaae1
commit 34ec2f5aa4
42 changed files with 141 additions and 132 deletions

View File

@@ -3,13 +3,13 @@
// License text can be found in the licenses/ folder.
// Created by Mitchell Livingston on 1/10/14.
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
@interface ShareTorrentFileHelper : NSObject
@property(nonatomic, class, readonly) ShareTorrentFileHelper* sharedHelper;
@property(nonatomic, readonly) NSArray* shareTorrentURLs;
@property(nonatomic, readonly) NSArray* menuItems;
@property(nonatomic, readonly) NSArray<NSURL*>* shareTorrentURLs;
@property(nonatomic, readonly) NSArray<NSMenuItem*>* menuItems;
@end