mx-ui-components
Version:
mobius ui library
13 lines (12 loc) • 445 B
TypeScript
import BaseComponent from "../Counter/BaseComponent";
declare class ConditionalRendererDom extends BaseComponent {
props: any;
currentState: any;
onPresent: boolean;
static get observedAttributes(): string[];
constructor();
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
connectedCallback(): void;
renderConditionally(value: any): void;
}
export default ConditionalRendererDom;