| 5 | |
| 6 | declare namespace Root { |
| 7 | export interface RootRaws extends Record<string, any> { |
| 8 | /** |
| 9 | * The space symbols after the last child to the end of file. |
| 10 | */ |
| 11 | after?: string |
| 12 | |
| 13 | /** |
| 14 | * Non-CSS code after `Root`, when `Root` is inside `Document`. |
| 15 | * |
| 16 | * **Experimental:** some aspects of this node could change within minor |
| 17 | * or patch version releases. |
| 18 | */ |
| 19 | codeAfter?: string |
| 20 | |
| 21 | /** |
| 22 | * Non-CSS code before `Root`, when `Root` is inside `Document`. |
| 23 | * |
| 24 | * **Experimental:** some aspects of this node could change within minor |
| 25 | * or patch version releases. |
| 26 | */ |
| 27 | codeBefore?: string |
| 28 | |
| 29 | /** |
| 30 | * Is the last child has an (optional) semicolon. |
| 31 | */ |
| 32 | semicolon?: boolean |
| 33 | } |
| 34 | |
| 35 | export interface RootProps extends ContainerProps { |
| 36 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…