| 1234567891011121314151617181920212223242526272829 |
- 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 {
- }
|