(rulesByLayer: Map<string, string[]>, preludes?: string[], layer?: string)
| 991 | } |
| 992 | |
| 993 | toCSS(rulesByLayer: Map<string, string[]>, preludes?: string[], layer?: string) { |
| 994 | for (let rule of this.rules) { |
| 995 | rule.toCSS(rulesByLayer, preludes, this.layer || layer); |
| 996 | } |
| 997 | } |
| 998 | |
| 999 | toJS(allowedOverridesSet: Set<string>, indent = ''): string { |
| 1000 | let rules = this.rules.slice(); |