UNPKG

@ackee/antonio-core

Version:

A HTTP client built on fetch API with axios-like API.

11 lines (10 loc) 211 B
interface Unparsed { chunk: string; curlyBracesIndexes: number[]; } export default class ChunkToJsonParser { unparsed: Unparsed; constructor(); parse(nextChunk?: string): any[]; } export {};