UNPKG
typescript-type
Version:
latest (0.0.10)
0.0.10
0.0.9
Typescript type
github.com/onalbi/typescript-type
onalbi/typescript-type
typescript-type
/
types
/
function.ts
2 lines
(1 loc)
•
90 B
text/typescript
View Raw
1
2
export
type
Params
<F
extends
Function
> = F
extends
(...
args
: infer U) =>
any
? U :
never
;