OriginalNode: {
    aria?: PretenderARIA;
    attrs?: readonly {
        name: string;
        value?: string | {
            fromAttr: string;
        };
    }[];
    element: string;
    inheritAttrs?: boolean;
    namespace?: "svg";
}

Type declaration

  • Optional Readonly aria?: PretenderARIA

    ARIA properties

  • Optional Readonly attrs?: readonly {
        name: string;
        value?: string | {
            fromAttr: string;
        };
    }[]

    Attributes

  • Readonly element: string

    Element name

  • Optional Readonly inheritAttrs?: boolean

    To have attributes the defined element has.

  • Optional Readonly namespace?: "svg"

    Namespace

    Supports "svg" and undefined only. If it is undefined, the namespace is HTML.

Generated using TypeDoc