class CodeRay::Encoders::HTML::CSS

def get_style_for_css_classes css_classes

Experimental RBS support (using type sampling data from the type_fusion project).

def get_style_for_css_classes: (Array[String] css_classes) -> String

This signature was generated using 1 sample from 1 application.

def get_style_for_css_classes css_classes
  cl = @styles[css_classes.first]
  return '' unless cl
  style = ''
  1.upto css_classes.size do |offset|
    break if style = cl[css_classes[offset .. -1]]
  end
  # warn 'Style not found: %p' % [styles] if style.empty?
  return style
end