| 375 | describe('CSS', () => { |
| 376 | type Selector = string; |
| 377 | interface Declaraction { |
| 378 | property: string; |
| 379 | value: string; |
| 380 | } |
| 381 | interface Rule { |
| 382 | selectors: Array<Selector>; |
| 383 | declarations: Array<Declaraction>; |
nothing calls this directly
no outgoing calls
no test coverage detected