I have a CssResource where I want to have some of the css classes \"mapped\" to methods:
@ClassName(\"top-table\") String topTable();
But I wan
You can use the @external directive to prevent a css classname from being obfuscated.
In your case, your css file might contain
@external top-table; .top-table { some: rule; }