mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
17 lines
383 B
Objective-C
17 lines
383 B
Objective-C
//
|
|
// ASLayoutablePrivate.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Ricky Cancro on 8/28/15.
|
|
// Copyright (c) 2015 Facebook. All rights reserved.
|
|
//
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class ASLayoutSpec;
|
|
@class ASLayoutOptions;
|
|
|
|
@protocol ASLayoutablePrivate <NSObject>
|
|
- (ASLayoutSpec *)finalLayoutable;
|
|
@property (nonatomic, strong, readonly) ASLayoutOptions *layoutOptions;
|
|
@end
|