UNPKG

@v4fire/core

Version:
14 lines (13 loc) 458 B
/*! * 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, adds tokens to close a numeric chunk if needed, and finishes the parsing */ export declare function done(this: Parser): Generator<Token>;