UNPKG

@agnos-ui/core

Version:

Framework-agnostic headless component library.

12 lines (11 loc) 494 B
import type { SSRHTMLElement } from '../../types'; /** * A unique symbol used to represent the attributes and style of an SSR (Server-Side Rendering) HTML element. * This symbol can be used as a key for storing or retrieving attributes and styles associated with an SSR HTML element. */ export declare const ssrHTMLElementAttributesAndStyle: unique symbol; /** * Create an SSRHTMLElement * @returns the created SSRHTMLElement */ export declare const ssrHTMLElement: () => SSRHTMLElement;