All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.sass-3.5.5.lib.sass.tree.keyframe_rule_node.rb Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
module Sass::Tree
  class KeyframeRuleNode < Node
    # The text of the directive after any interpolated SassScript has been resolved.
    # Since this is only a static node, this is the only value property.
    #
    # @return [String]
    attr_accessor :resolved_value

    # @param resolved_value [String] See \{#resolved_value}
    def initialize(resolved_value)
      @resolved_value = resolved_value
      super()
    end
  end
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy