(value: string)
| 651 | }; |
| 652 | |
| 653 | const normalizeCustomPropertyValue = (value: string) => { |
| 654 | if (value === "") { |
| 655 | return value; |
| 656 | } |
| 657 | try { |
| 658 | return csstree.generate(csstree.parse(value, { context: "value" })); |
| 659 | } catch { |
| 660 | return value; |
| 661 | } |
| 662 | }; |
| 663 | |
| 664 | type Selector = { |
| 665 | name: string; |