UNPKG

meriyah

Version:

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

6 lines (5 loc) 253 B
import { Context } from '../common'; import { type Parser } from '../parser/parser'; import { Token } from '../token'; import { NumberKind } from './common'; export declare function scanNumber(parser: Parser, context: Context, kind: NumberKind): Token;