| 1 | export interface TemplateNode { |
| 2 | path: string; |
| 3 | startTag: TemplateTag; |
| 4 | endTag?: TemplateTag; |
| 5 | component?: string; |
| 6 | } |
| 7 | |
| 8 | export interface TemplateTag { |
| 9 | start: TemplateTagPosition; |
nothing calls this directly
no outgoing calls
no test coverage detected