Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Nov 29, 2023
1 parent 9f28608 commit 96188cb
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,9 @@ export interface TemplateNode {
interface PreprocessedResult {
templateVisitorKeys: Record<string, string[]>;
templateInfos: {
/**
* range of the template including <template></template> tags
*/
/** Range of the template including <template></template> tags */
templateRange: [number, number];
/**
* range of the template content, excluding <template></template> tags
*/
/** Range of the template content, excluding <template></template> tags */
range: [number, number];
ast: TemplateNode | undefined;
}[];
Expand Down

0 comments on commit 96188cb

Please sign in to comment.