mx-ui-components
Version:
mobius ui library
12 lines (11 loc) • 395 B
TypeScript
import BaseComponent from "../Counter/BaseComponent";
export default class CustomNode extends BaseComponent {
private container;
private props;
constructor();
static get observedAttributes(): string[];
connectedCallback(): void;
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
addNode(): void;
}
export { CustomNode };