(property: string, value: string | undefined, important = false)
| 93 | } |
| 94 | |
| 95 | export function decl(property: string, value: string | undefined, important = false): Declaration { |
| 96 | return { |
| 97 | kind: class="st">'declaration', |
| 98 | property, |
| 99 | value, |
| 100 | important, |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | export function comment(value: string): Comment { |
| 105 | return { |
no outgoing calls