UNPKG

@onurege3467/zerohelper

Version:

ZeroHelper is a versatile high-performance utility library and database framework for Node.js, fully written in TypeScript.

11 lines (10 loc) 396 B
/** * TOON (Token-Oriented Object Notation) Support for ZeroHelper * Optimized for LLM token efficiency and now supports Native Storage. * API matches standard JSON object (stringify/parse). */ export declare function stringify(data: any, indent?: number): string; /** * Advanced TOON Parser with Indentation Support for Deep Nesting */ export declare function parse(toonStr: string): any;