Type alias PrototypeOf<CLS, Args>

PrototypeOf<CLS, Args>: CLS extends (new (...args) => U)
    ? U
    : never

get the prototype object of a class CLS

Type Parameters

  • CLS
  • Args extends any[] = any[]

Generated using TypeDoc