123456789101112131415161718192021222324252627282930313233343536 |
- #if os(iOS) || os(tvOS)
- import UIKit
- #endif
-
- @available(iOS 8.0, *)
- public extension ConstraintLayoutSupport {
-
- public var snp: ConstraintLayoutSupportDSL {
- return ConstraintLayoutSupportDSL(support: self)
- }
-
- }
|