ts-flex-query
Version:
Flexible and type-safe data queries
8 lines (7 loc) • 348 B
TypeScript
import { Expression } from '../core';
/**
* Serializes an expression to JSON for debugging purposes.
* Uses the expression's constructor name to identify their type.
* Therefore, this method is not useful for minified JS code with changed class names.
*/
export declare function serializeExpressionForDebugging(expression: Expression): string;