Get the parameters of a class constructor
typeof class
List
import {C} from 'ts-toolbelt' type User = C.Class<[string, string], {firstname: string, lastname: string}> type test0 = C.Parameters<User> // [string, string]
Get the parameters of a class constructor