/** * Streaming API type definitions */ import type { EncodeOptions, DecodeOptions } from '../types.js'; /** * Streaming encode options */ export interface StreamEncodeOptions extends EncodeOptions { highWaterMark?: number; } /** * Streaming decode options */ export interface StreamDecodeOptions extends DecodeOptions { highWaterMark?: number; } /** * Chunk data for streaming */ export interface TONLChunk { type: 'block' | 'primitive' | 'array'; key?: string; data: any; complete: boolean; } //# sourceMappingURL=types.d.ts.map