@v4fire/core
Version:
V4Fire core library
14 lines (13 loc) • 468 B
TypeScript
/*!
* V4Fire Core
* https://github.com/V4Fire/Core
*
* Released under the MIT license
* https://github.com/V4Fire/Core/blob/master/LICENSE
*/
import type Parser from '../../../../../core/json/stream/parser';
import type { Token } from '../../../../../core/json/stream/parser/interface';
/**
* Parses the buffer and generates from digits `[0-9]*` a token `numberChunk` with a number value
*/
export declare function numberDigit(this: Parser): Generator<Token>;