Type alias FunctionPropertyNames<T>

FunctionPropertyNames<T>: TypePropertyNames<T, Function>

选取T类型中值为函数的所有键

    class A
{
a = 1;
f(){}
}

var a: FunctionPropertyNames<A>; //var a: "f"

Type Parameters

  • T

Generated using TypeDoc