UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Join the chat at https://gitter.im/primefaces/primeng](https://badges.gitter.im/primefaces/primeng.svg)](https://gitter.im/primefaces/primeng?ut

32 lines (31 loc) 854 B
import { ElementRef, EventEmitter, AfterViewInit, OnDestroy } from '@angular/core'; import { DomHandler } from '../dom/domhandler'; export declare class ButtonDirective implements AfterViewInit, OnDestroy { el: ElementRef; domHandler: DomHandler; iconPos: string; cornerStyleClass: string; _label: string; _icon: string; initialized: boolean; constructor(el: ElementRef, domHandler: DomHandler); ngAfterViewInit(): void; getStyleClass(): string; label: string; icon: string; ngOnDestroy(): void; } export declare class Button { type: string; iconPos: string; icon: string; label: string; disabled: boolean; style: any; styleClass: string; onClick: EventEmitter<any>; onFocus: EventEmitter<any>; onBlur: EventEmitter<any>; } export declare class ButtonModule { }