mx-ui-components
Version:
mobius ui library
14 lines (13 loc) • 446 B
TypeScript
import BaseComponent from "../Counter/BaseComponent";
export default class TimerComponent extends BaseComponent {
props: any;
value: any;
timer: number;
defaultStyles: string;
defaultText: string;
constructor();
static get observedAttributes(): string[];
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
updateDynamicElement(): void;
}
export { TimerComponent };