UNPKG
@vindev/particle
Version:
latest (0.0.7-alpha)
0.0.7-alpha
0.0.6-alpha
0.0.5-alpha
0.0.4-alpha
0.0.2-alpha
0.0.1-alpha
Angular Component Library using Tailwind
ptcl.dev
vindevinc/particle-lib
@vindev/particle
/
lib
/
shared
/
mixins
/
click.mixin.d.ts
9 lines
(8 loc)
•
303 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
EventEmitter
}
from
'@angular/core'
;
import
{
Constructor
}
from
'./'
;
export
declare
function
ClickMixin
<T
extends
Constructor
<{}>>(
Base
?: T): {
new
(...
args
:
any
[]): {
action
:
EventEmitter
<
any
>;
clicked
(
event
?:
MouseEvent
,
disabled
?:
boolean
):
void
; }; } & T;