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
/
close.mixin.d.ts
9 lines
(8 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
EventEmitter
}
from
'@angular/core'
;
import
{
Constructor
}
from
'./'
;
export
declare
function
CloseMixin
<T
extends
Constructor
<{}>>(
Base
?: T): {
new
(...
args
:
any
[]): {
closeIt
:
EventEmitter
<
any
>;
closed
(
value
?:
any
):
void
; }; } & T;