(rulesByLayer: Map<string, string[]>, preludes?: string[], layer?: string)
| 985 | } |
| 986 | |
| 987 | toCSS(rulesByLayer: Map<string, string[]>, preludes?: string[], layer?: string) { |
| 988 | for (let rule of this.rules) { |
| 989 | rule.toCSS(rulesByLayer, preludes, this.layer || layer); |
| 990 | } |
| 991 | } |
| 992 | |
| 993 | toJS(allowedOverridesSet: Set<string>, indent = ''): string { |
| 994 | let rules = this.rules.slice(); |