v4web-components
Version:
Stencil Component Starter
12 lines (10 loc) • 331 B
TypeScript
import type { Components, JSX } from "../types/components";
interface NavbarItem extends Components.NavbarItem, HTMLElement {}
export const NavbarItem: {
prototype: NavbarItem;
new (): NavbarItem;
};
/**
* Used to define this component and all nested components recursively.
*/
export const defineCustomElement: () => void;