UNPKG
typescript-types
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Typescript typings
github.com/krewi1/typescript-typings
typescript-types
/
types
/
tupple
/
prepend.ts
6 lines
(5 loc)
•
126 B
text/typescript
View Raw
1
2
3
4
5
6
export
type
Prepend
<E, T
extends
any
[]> = (
(
head
: E, ...
args
: T
) =>
any
)
extends
(
(
...
args
: infer U
) =>
any
) ? U : T;