nd-gui
Version:
UI components for NetDocuments
16 lines (15 loc) • 571 B
TypeScript
import { OnInit, EventEmitter } from '@angular/core';
export declare class ButtonComponent implements OnInit {
/** The type of button to be shown, either primary, secondary, or mutli */
type: string;
/** The text that should appear as the buttons label */
label: string;
/** Flag that indicates if the button should be disabled or not */
disabled: boolean;
classList: string | string[];
Id: string;
buttonClickEvent: EventEmitter<Event>;
constructor();
ngOnInit(): void;
clickEvent(e: MouseEvent): void;
}