mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-04 20:00:53 +00:00
25 lines
630 B
Objective-C
25 lines
630 B
Objective-C
//
|
|
// ASYogaLayoutSpec.h
|
|
// Texture
|
|
//
|
|
// Copyright (c) 2017-present, Pinterest, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
|
|
#import <AsyncDisplayKit/ASAvailability.h>
|
|
|
|
#if YOGA /* YOGA */
|
|
|
|
#import <AsyncDisplayKit/ASDisplayNode.h>
|
|
#import <AsyncDisplayKit/ASLayoutSpec.h>
|
|
|
|
@interface ASYogaLayoutSpec : ASLayoutSpec
|
|
@property (nonatomic, strong, nonnull) ASDisplayNode *rootNode;
|
|
@end
|
|
|
|
#endif /* YOGA */
|