| 5 | import { parse, hasMore, has, lookAhead, ParseGenerator } from './index'; |
| 6 | |
| 7 | interface CSSComment { |
| 8 | type: 'comment'; |
| 9 | content: string; |
| 10 | } |
| 11 | |
| 12 | interface CSSDeclaration { |
| 13 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected