// // Copyright (c) 2018 Open Whisper Systems. All rights reserved. // #import "ConversationViewController.h" #import #import NS_ASSUME_NONNULL_BEGIN @class TSThread; @interface HomeViewController : OWSViewController - (void)presentThread:(TSThread *)thread action:(ConversationViewAction)action animated:(BOOL)isAnimated; - (void)presentThread:(TSThread *)thread action:(ConversationViewAction)action focusMessageId:(nullable NSString *)focusMessageId animated:(BOOL)isAnimated; // Used by force-touch Springboard icon shortcut - (void)showNewConversationView; @end NS_ASSUME_NONNULL_END