UNPKG

web-ui-pack

Version:
21 lines (20 loc) 564 B
declare const tag = "wup-popup-arrow"; declare global { interface HTMLElementTagNameMap { [tag]: WUPPopupArrowElement; } } declare module "react" { namespace JSX { interface IntrinsicElements { /** Internal arrow element for {@link WUPPopupElement} */ [tag]: WUP.Base.JSXProps<WUPPopupArrowElement>; } } } /** Internal arrow element for {@link WUPPopupElement} */ export default class WUPPopupArrowElement extends HTMLElement { static tagName: "wup-popup-arrow"; constructor(); } export {};