Signal-iOS/SignalServiceKit/Storage/AxolotlStore/CallKitIdStore.h
2024-03-27 12:22:52 -05:00

18 lines
337 B
Objective-C

//
// Copyright 2018 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
NS_ASSUME_NONNULL_BEGIN
@class TSThread;
@interface CallKitIdStore : NSObject
+ (void)setThread:(TSThread *)thread forCallKitId:(NSString *)callKitId;
+ (nullable TSThread *)threadForCallKitId:(NSString *)callKitId;
@end
NS_ASSUME_NONNULL_END