Is T exactly Function.
T
Function
type R = IsStrictFunction<Function> // truetype R = IsStrictFunction<() => void> // falsetype R = IsStrictFunction<(() => void) & { a: 1 }> // false Copy
type R = IsStrictFunction<Function> // truetype R = IsStrictFunction<() => void> // falsetype R = IsStrictFunction<(() => void) & { a: 1 }> // false
Is
T
exactlyFunction
.