@mikuroxina/mini-fn
    Preparing search index...

    Type Alias FactsOrganization<T>

    An organized facts to interpret by a renderer.

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

    Type Parameters

    • T
    Index

    Properties

    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.