mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
3873724f59
commit_hash:f82a6800cb5c90e67a56c0a7ae75bb3a7e182ef3
8 lines
163 B
Swift
8 lines
163 B
Swift
import LayoutKit
|
|
|
|
extension BlockError: Swift.Equatable {
|
|
public static func ==(lhs: BlockError, rhs: BlockError) -> Bool {
|
|
lhs.message == rhs.message
|
|
}
|
|
}
|