cs-element
Version:
Advanced reactive data management library with state machines, blueprints, persistence, compression, networking, and multithreading support
12 lines • 495 B
TypeScript
import { ICSElement, SerializationOptions, SerializedElement } from '../types/interfaces';
export declare class ElementSerializer {
/**
* Экспорт структуры в JSON
*/
static toJSON(element: ICSElement, includeData?: boolean): any;
/**
* Улучшенная сериализация с опциями
*/
static serialize(element: ICSElement, options?: SerializationOptions): SerializedElement;
}
//# sourceMappingURL=ElementSerializer.d.ts.map