| 62 | export type StartAttributesToken = LexToken<'start-attributes'>; |
| 63 | |
| 64 | export interface AttributeToken extends LexToken<'attribute'> { |
| 65 | name: string; |
| 66 | val: string | boolean; |
| 67 | mustEscape: boolean; |
| 68 | } |
| 69 | |
| 70 | export type EndAttributesToken = LexToken<'end-attributes'>; |
| 71 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…