UNPKG

jelenjs

Version:

Core runtime library for JelenJS - an experimental UI framework with fine-grained reactivity

14 lines (13 loc) 513 B
/** * Debug function to show JSX transformation results * Use this in your templates to see what JSX produces */ export declare function debugJSX(value: any, label?: string): HTMLElement; /** * Show the raw JSX transformation result without rendering */ export declare function showJSXTransform(jsxExpression: any, label?: string): HTMLElement; /** * Show detailed information about reactive values and their current state */ export declare function debugReactive(value: any, label?: string): HTMLElement;