UNPKG
@unisnips/ultisnips
Version:
latest (0.8.0)
0.8.0
0.7.3
0.7.2
0.7.1
0.7.0
0.7.0-alpha.0
0.6.0-alpha.0
0.5.1-alpha.0
0.5.0
0.5.0-alpha.0
0.4.0
0.4.0-alpha.1
0.4.0-alpha.0
0.3.0-alpha.1
0.3.0-alpha.0
0.2.0-alpha.1
0.2.0-alpha.0
0.1.0
Utilities for converting ultisnips in unisnips project
@unisnips/ultisnips
/
lib
/
util
/
class-mix.d.ts
6 lines
(5 loc)
•
209 B
TypeScript
View Raw
1
2
3
4
5
6
declare type Ctor
<
T
,
S
>
=
{
new
(
...args
:
any
[
]
)
:
T
;
}
&
S; export declare
function
mix
<
T
,
TS
,
U
,
US
,
W
,
WS
>
(
c1
:
Ctor
<
T
,
TS
>
,
c2
?
:
Ctor
<
U
,
US
>
,
c3
?
:
Ctor
<
W
,
WS
>
)
:
Ctor
<
T
&
U
&
W
,
TS
&
US
&
WS
>
; export
{
}
;