UNPKG

meriyah

Version:

A 100% compliant, self-hosted javascript parser with high focus on both performance and stability

7 lines (6 loc) 340 B
import { type Context } from '../common'; import { type Parser } from '../parser/parser'; import { Token } from '../token'; export declare function scanJSXAttributeValue(parser: Parser, context: Context): Token; export declare function nextJSXToken(parser: Parser): void; export declare function rescanJSXIdentifier(parser: Parser): Token;