diff --git a/src/parse.ts b/src/parse.ts index 43d017fb..9312115c 100644 --- a/src/parse.ts +++ b/src/parse.ts @@ -37,13 +37,9 @@ export interface TemplateNode { interface PreprocessedResult { templateVisitorKeys: Record; templateInfos: { - /** - * range of the template including tags - */ + /** Range of the template including tags */ templateRange: [number, number]; - /** - * range of the template content, excluding tags - */ + /** Range of the template content, excluding tags */ range: [number, number]; ast: TemplateNode | undefined; }[];