element-vir - v26.14.0
    Preparing search index...

    Type Alias DeclarativeElementInputErrorParams<Inputs>

    DeclarativeElementInputErrorParams: Extract<keyof Inputs, keyof HTMLElement> extends never
        ? []
        : [
            "ERROR: Cannot define an element input property that clashes with native HTMLElement properties.",
        ]

    Verifies that the given Inputs type does not clash with built-in HTMLElement properties. This is used within defineElement.

    Type Parameters