web-ui-pack
Version:
Web package with UI elements
21 lines (20 loc) • 564 B
TypeScript
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 {};