UNPKG
@bemedev/basifun
Version:
latest (0.5.3)
0.5.3
0.5.2
0.5.1
0.5.0
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.6
0.1.5
0.1.4
Basic ts functions
github.com/chlbri/basifun
chlbri/basifun
@bemedev/basifun
/
lib
/
functions
/
arrays
/
types.d.ts
4 lines
•
239 B
TypeScript
View Raw
1
2
3
4
import
type
{
Fn
}
from
'../../.bemedev/globals/types'
;
export
type
isArray_F = <T>
(
value
:
unknown
) =>
value is T[];
export
type
Asyncfy
_F = <P
extends
any
[], R =
any
>
(
fn
:
Fn
<P, R>
) =>
Fn
<P,
Promise
<R>>;
//# sourceMappingURL=types.d.ts.map