mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-27 01:08:50 +00:00
11 lines
188 B
Go
11 lines
188 B
Go
package css
|
|
|
|
type CSSStyleSheet struct {
|
|
Type string
|
|
Media string
|
|
CssRuleList []*CSSRule
|
|
}
|
|
|
|
func (ss *CSSStyleSheet) GetCSSRuleList() []*CSSRule {
|
|
return ss.CssRuleList
|
|
}
|