UNPKG

@asi-ngtools/lib

Version:

This project is a little components library, simple to use, which will help you to simplify your project.

21 lines (20 loc) 622 B
import { OnInit, Renderer2, ElementRef, OnChanges } from '@angular/core'; export declare class AsiButtonComponent implements OnInit, OnChanges { private renderer; private elementRef; /** html id */ id: string; /** html name */ name: string; /** html type */ type: 'submit' | 'button'; /** button design */ design: 'flat' | 'raised' | 'bordered'; /** button size */ size: 'standard' | 'small' | 'mini'; /** ensable/disable the button */ disabled: boolean; constructor(renderer: Renderer2, elementRef: ElementRef); ngOnInit(): void; ngOnChanges(): void; }