moh-common-lib
Version:
A library of Angular components, services, and styles for B.C. Government Ministry of Health (MoH).
17 lines (16 loc) • 436 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
export declare class XiconButtonComponent implements OnInit {
/**
* Label to use for accessibility.
* @required
*/
label: string;
/**
* @deprecated - Remove at breaking change and go to (click)
*/
clickEvent: EventEmitter<any>;
click: EventEmitter<any>;
constructor();
ngOnInit(): void;
onBtnClick(): void;
}