Logos DX
    Preparing search index...

    Interface CreateOptions

    Options for $.create() — declarative element construction

    interface CreateOptions {
        attrs?: Record<string, string>;
        children?: (string | HTMLElement)[];
        class?: string[];
        css?: Record<string, string>;
        on?: Record<string, EvListener<EvType>>;
        signal?: AbortSignal;
        text?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    attrs?: Record<string, string>
    children?: (string | HTMLElement)[]
    class?: string[]
    css?: Record<string, string>
    on?: Record<string, EvListener<EvType>>
    signal?: AbortSignal
    text?: string