mithril-materialized
    Preparing search index...

    Interface HtmlAttrs

    HTML attributes that can be passed to button elements

    Use native HTML attributes directly instead

    interface HtmlAttrs {
        autofocus?: boolean;
        disabled?: boolean;
        for?: string;
        id?: string;
        placeholder?: string;
        type?: "reset" | "submit" | "button";
    }
    Index

    Properties

    autofocus?: boolean
    disabled?: boolean
    for?: string
    id?: string
    placeholder?: string
    type?: "reset" | "submit" | "button"