GetAnimatedStylesForNodeResponse

@Serializable
data class GetAnimatedStylesForNodeResponse(val animationStyles: List<CSSAnimationStyle>? = null, val transitionsStyle: CSSStyle? = null, val inherited: List<InheritedAnimatedStyleEntry>? = null)

Response type for the CSSDomain.getAnimatedStylesForNode command.

Constructors

Link copied to clipboard
constructor(animationStyles: List<CSSAnimationStyle>? = null, transitionsStyle: CSSStyle? = null, inherited: List<InheritedAnimatedStyleEntry>? = null)

Properties

Link copied to clipboard

Styles coming from animations.

Link copied to clipboard

Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element.

Link copied to clipboard

Style coming from transitions.