(text: string)
| 922 | setTooltip(tip: string) { this.buttonEl.setAttribute('data-tooltip', tip); return this; } |
| 923 | setClass(cls: string) { this.buttonEl.classList.add(cls); return this; } |
| 924 | setButtonText(text: string) { this.buttonEl.textContent = text; return this; } |
| 925 | setCta() { return this; } |
| 926 | onClick(cb: () => void) { this.buttonEl.addEventListener('click', cb); return this; } |
| 927 | } |
no outgoing calls
no test coverage detected