mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
246 B
Objective-C
11 lines
246 B
Objective-C
@import Foundation;
|
|
|
|
@interface AsyncImports : NSObject
|
|
|
|
-(void)methodWithCompletion:(void (^)(void))completionHandler;
|
|
|
|
-(void)propWithCompletion:(void (^)(BOOL))completionHandler
|
|
__attribute__((swift_async_name("getter:asyncProp()")));
|
|
|
|
@end
|