| 3 | |
| 4 | declare namespace Declaration { |
| 5 | export interface DeclarationRaws extends Record<string, unknown> { |
| 6 | /** |
| 7 | * The space symbols before the node. It also stores `*` |
| 8 | * and `_` symbols before the declaration (IE hack). |
| 9 | */ |
| 10 | before?: string |
| 11 | |
| 12 | /** |
| 13 | * The symbols between the property and value for declarations. |
| 14 | */ |
| 15 | between?: string |
| 16 | |
| 17 | /** |
| 18 | * The content of the important statement, if it is not just `!important`. |
| 19 | */ |
| 20 | important?: string |
| 21 | |
| 22 | /** |
| 23 | * Declaration value with comments. |
| 24 | */ |
| 25 | value?: { |
| 26 | raw: string |
| 27 | value: string |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | export interface DeclarationProps { |
| 32 | /** Whether the declaration has an `!important` annotation. */ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…