]> git.saurik.com Git - apple/security.git/blob - keychain/otpaird/OTPairingService.h
Security-59306.11.20.tar.gz
[apple/security.git] / keychain / otpaird / OTPairingService.h
1 #import <IDS/IDS.h>
2 #import "OTPairingConstants.h"
3
4 typedef void (^OTPairingCompletionHandler)(bool success, NSError *error);
5
6 @interface OTPairingService : NSObject <IDSServiceDelegate>
7
8 + (instancetype)sharedService;
9
10 #if TARGET_OS_WATCH
11 - (void)initiatePairingWithCompletion:(OTPairingCompletionHandler)completionHandler;
12 #endif /* TARGET_OS_WATCH */
13
14 @end