mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-09 14:10:05 +00:00
24 lines
382 B
Objective-C
24 lines
382 B
Objective-C
//
|
|
// LayoutSpecsOverviewViewController.h
|
|
// AsyncDisplayKitOverview
|
|
//
|
|
// Created by Michael Schneider on 4/15/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@protocol ASLayoutSpecListEntry <NSObject>
|
|
|
|
- (NSString *)entryTitle;
|
|
- (NSString *)entryDescription;
|
|
|
|
@end
|
|
|
|
@interface OverviewComponentsViewController : UIViewController
|
|
|
|
|
|
@end
|
|
|