mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
20 lines
428 B
Swift
20 lines
428 B
Swift
import LayoutKit
|
|
|
|
public struct DivActionHandlingContext {
|
|
public let info: DivActionInfo
|
|
public let expressionResolver: ExpressionResolver
|
|
|
|
let actionHandler: DivActionHandler
|
|
let blockStateStorage: DivBlockStateStorage
|
|
let variablesStorage: DivVariablesStorage
|
|
let updateCard: DivActionHandler.UpdateCardAction
|
|
|
|
public var cardId: DivCardID {
|
|
info.cardId
|
|
}
|
|
|
|
var path: UIElementPath {
|
|
info.path
|
|
}
|
|
}
|