button.d.ts 764 B

1234567891011121314151617181920212223242526272829
  1. import { ElementRef, EventEmitter, AfterViewInit, OnDestroy } from '@angular/core';
  2. export declare class ButtonDirective implements AfterViewInit, OnDestroy {
  3. el: ElementRef;
  4. iconPos: 'left' | 'right';
  5. cornerStyleClass: string;
  6. _label: string;
  7. _icon: string;
  8. initialized: boolean;
  9. constructor(el: ElementRef);
  10. ngAfterViewInit(): void;
  11. getStyleClass(): string;
  12. label: string;
  13. icon: string;
  14. ngOnDestroy(): void;
  15. }
  16. export declare class Button {
  17. type: string;
  18. iconPos: string;
  19. icon: string;
  20. label: string;
  21. disabled: boolean;
  22. style: any;
  23. styleClass: string;
  24. onClick: EventEmitter<any>;
  25. onFocus: EventEmitter<any>;
  26. onBlur: EventEmitter<any>;
  27. }
  28. export declare class ButtonModule {
  29. }