2019-12-19 17:32:49 +00:00
|
|
|
/*
|
2023-04-06 09:44:16 +00:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2017-03-15 14:44:52 +00:00
|
|
|
*
|
2018-05-01 21:33:50 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-03-15 14:44:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#import <IGListKit/IGListKit.h>
|
|
|
|
|
|
|
|
|
|
@interface IGTestDiffingSectionController : IGListBindingSectionController <IGListBindingSectionControllerDataSource, IGListBindingSectionControllerSelectionDelegate>
|
|
|
|
|
|
|
|
|
|
@property (nonatomic, strong) id selectedViewModel;
|
2017-07-17 21:15:08 +00:00
|
|
|
@property (nonatomic, strong) id deselectedViewModel;
|
2017-09-20 15:34:08 +00:00
|
|
|
@property (nonatomic, strong) id highlightedViewModel;
|
|
|
|
|
@property (nonatomic, strong) id unhighlightedViewModel;
|
2017-03-15 14:44:52 +00:00
|
|
|
|
|
|
|
|
@end
|