填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

Type

Represents a type that a Component or other object is instances of.

查看"说明"...

      
      class Type<T> extends Function {
  constructor(...args: any[]): T
}
    

说明

An example of a Type is MyCustomComponent class, which in JavaScript is be represented by the MyCustomComponent constructor function.

构造函数

constructor(...args: any[]): T
      
      constructor(...args: any[]): T
    
参数
args any[]
返回值

T