UNPKG

rvx

Version:

A signal based rendering library

8 lines (7 loc) 269 B
import { Expression } from "../signals.js"; /** * Create a text node that displays the result of an expression. * * Null and undefined are displayed as an empty string. */ export declare function createText(expr: Expression<unknown>, env: typeof globalThis): Text;