标签: typescript
我需要类似getFunctionName的东西:
getFunctionName
type FunctionName<F extends (...args: any[]) => any> = getFunctionName F;
用例:
function foo() { } type FooName = FunctionName<typeof foo>; // should be resolved to "foo"
像这样可能吗?