UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng) [![Build Status](https://travis-ci.org/primefaces/primeng.

30 lines (29 loc) 764 B
import { ElementRef, EventEmitter, AfterViewInit, OnDestroy } from '@angular/core'; export declare class ButtonDirective implements AfterViewInit, OnDestroy { el: ElementRef; iconPos: 'left' | 'right'; cornerStyleClass: string; _label: string; _icon: string; initialized: boolean; constructor(el: ElementRef); 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 { }