UNPKG
ngx-feedback
Version:
latest (1.0.0)
1.0.0
1.0.0-beta
1.0.0-alpha
Angular Feedback Library
github.com/tnicola/ngx-feedback
ngx-feedback
/
lib
/
components
/
button
/
button.component.d.ts
8 lines
(7 loc)
•
212 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
OnInit
,
EventEmitter
}
from
'@angular/core'
;
export
declare
class
ButtonComponent
implements
OnInit
{
click
:
EventEmitter
<
any
>;
constructor
(
);
ngOnInit
():
void
;
onClick
():
void
; }