UNPKG

@tempots/ui

Version:

Provides a higher level of renderables to help fast development with Tempo.

9 lines (8 loc) 347 B
import { Value } from '@tempots/dom'; /** * Creates a renderable that applies classes based on a record of boolean signals. * * @param obj - The record of signals. * @returns The created renderable. */ export declare function classes(obj: Record<string, Value<boolean>>): import('@tempots/dom').Renderable<import('@tempots/dom').DOMContext>;