@tempots/ui
Version:
Provides a higher level of renderables to help fast development with Tempo.
10 lines (9 loc) • 322 B
TypeScript
import { Value } from '@tempots/dom';
/**
* Creates an HTML title element with the specified title.
*
* @param title - The title to be set for the HTML title element.
* @returns The created HTML title element.
* @public
*/
export declare const HTMLTitle: (title: Value<string>) => import('@tempots/dom').Renderable;