Trilium Frontend API
    Preparing search index...

    Interface RawHtmlProps

    From T, pick a set of properties whose keys are in the union K

    interface RawHtmlProps {
        className?: string;
        dir?: Signalish<"auto" | "rtl" | "ltr">;
        html?: any;
        onClick?: (e: MouseEvent) => void;
        style?: CSSProperties;
        tabindex?: Signalish<number>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    className?: string
    dir?: Signalish<"auto" | "rtl" | "ltr">
    html?: any
    onClick?: (e: MouseEvent) => void
    tabindex?: Signalish<number>