UNPKG

@lucasferreiralsf/angular-frontend-library

Version:

This is a set of custom angular components to easy the development of any Subway frontend project.

14 lines (13 loc) 379 B
import { OnInit, EventEmitter } from '@angular/core'; export declare class ButtonComponent implements OnInit { color?: string; actionName: string; typeButton: string; materialTypeButton: string; fullWidth?: boolean; customStyles?: {}; buttonClick: EventEmitter<any>; constructor(); ngOnInit(): void; topButtonClick(): void; }