diff options
Diffstat (limited to 'src/parser/parse/read/script.ts')
-rw-r--r-- | src/parser/parse/read/script.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/parse/read/script.ts b/src/parser/parse/read/script.ts index 7afbfb08f..4f1d31b44 100644 --- a/src/parser/parse/read/script.ts +++ b/src/parser/parse/read/script.ts @@ -1,9 +1,9 @@ // @ts-nocheck -import * as acorn from '../acorn'; +import type { Node } from 'estree'; import { Parser } from '../index.js'; import { Script } from '../../interfaces.js'; -import { Node, Program } from 'estree'; + const script_closing_tag = '</script>'; |