UNPKG

mx-ui-components

Version:

mobius ui library

15 lines (14 loc) 449 B
import BaseElement from "./BaseComponent"; declare global { interface Window { routerCallback?: (href: string) => void; } } declare class MobiusBreadcrumbItem extends BaseElement { props: any; constructor(); static get observedAttributes(): string[]; attributeChangedCallback(attrName: string, oldVal: string | null, newVal: string | null): void; connectedCallback(): void; } export default MobiusBreadcrumbItem;