Type alias FactsOrganization<T>

FactsOrganization<T>: {
    attributes: Record<string, string>;
    events: Record<string, Handler<T>>;
    props: Record<string, string>;
    styles: Record<string, string>;
}

An organized facts to interpret by a renderer.

Type Parameters

  • T

Type declaration

  • attributes: Record<string, string>

    The HTML/XML attributes for the node.

  • events: Record<string, Handler<T>>

    The event handlers by its event name.

  • props: Record<string, string>

    The JavaScript properties for the element object.

  • styles: Record<string, string>

    The style specification for the tag.

Generated using TypeDoc