@rangertechnologies/ngnxt
Version:
This library was used for creating dymanic UI based on the input JSON/data
17 lines (16 loc) • 989 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
import * as i0 from "@angular/core";
export declare class CustomButtonComponent implements OnInit {
height: string;
width: string;
textColor: string;
buttonText: string;
value: string;
backgroundColor: string;
buttonValue: EventEmitter<any>;
constructor();
ngOnInit(): void;
handleClick(event: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CustomButtonComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CustomButtonComponent, "app-custom-button", never, { "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; }, { "buttonValue": "buttonValue"; }, never, never, false, never>;
}